mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 21:18:32 +02:00
Merge pull request #820 from wren/version-fix
Fix issue where jrnl would always out 'source' for version, fix Poetry config to build and publish properly
This commit is contained in:
commit
b71f8fc430
3 changed files with 6 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -52,4 +52,3 @@ exp/
|
||||||
_extras/
|
_extras/
|
||||||
*.sublime-*
|
*.sublime-*
|
||||||
site/
|
site/
|
||||||
jrnl/__version__.py
|
|
||||||
|
|
1
jrnl/__version__.py
Normal file
1
jrnl/__version__.py
Normal file
|
@ -0,0 +1 @@
|
||||||
|
__version__ = "v2.2-beta"
|
|
@ -1,12 +1,15 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "jrnl"
|
name = "jrnl"
|
||||||
version = "v2.1.1"
|
version = "v2.2-beta"
|
||||||
description = "Collect your thoughts and notes without leaving the command line."
|
description = "Collect your thoughts and notes without leaving the command line."
|
||||||
authors = [
|
authors = [
|
||||||
"Manuel Ebert <manuel@1450.me>",
|
"Manuel Ebert <manuel@1450.me>",
|
||||||
"Jonathan Wren <jonathan@nowandwren.com>",
|
"Jonathan Wren <jonathan@nowandwren.com>",
|
||||||
"Micah Ellison <micahellison@gmail.com>"
|
"Micah Ellison <micahellison@gmail.com>"
|
||||||
]
|
]
|
||||||
|
maintainers = [
|
||||||
|
"Jonathan Wren and Micah Ellison <jrnl-sh@googlegroups.com>",
|
||||||
|
]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
homepage = "https://jrnl.sh"
|
homepage = "https://jrnl.sh"
|
||||||
|
@ -30,7 +33,7 @@ pyyaml = "^5.1"
|
||||||
behave = "^1.2"
|
behave = "^1.2"
|
||||||
mkdocs = "^1.0"
|
mkdocs = "^1.0"
|
||||||
flake8 = "^3.7"
|
flake8 = "^3.7"
|
||||||
black = {version = "^19.10b0",allows-prereleases = true}
|
black = {version = "^19.10b0",allow-prereleases = true}
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
jrnl = 'jrnl.cli:run'
|
jrnl = 'jrnl.cli:run'
|
||||||
|
|
Loading…
Add table
Reference in a new issue