From a753f53f5427931752577fbdc4af89860197a6f6 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 25 Jan 2020 11:47:52 -0800 Subject: [PATCH 1/4] add version file to repo --- .gitignore | 1 - jrnl/__version__.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 jrnl/__version__.py diff --git a/.gitignore b/.gitignore index a06808df..2382cabe 100644 --- a/.gitignore +++ b/.gitignore @@ -52,4 +52,3 @@ exp/ _extras/ *.sublime-* site/ -jrnl/__version__.py diff --git a/jrnl/__version__.py b/jrnl/__version__.py new file mode 100644 index 00000000..4bf5d5ff --- /dev/null +++ b/jrnl/__version__.py @@ -0,0 +1 @@ +__version__ = "v2.2-beta" From c88457f9ff58946bf9f4dc9e7dedf14860f13956 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 25 Jan 2020 11:52:47 -0800 Subject: [PATCH 2/4] fix poetry warning --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b5c2a6b1..284da2ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ pyyaml = "^5.1" behave = "^1.2" mkdocs = "^1.0" flake8 = "^3.7" -black = {version = "^19.10b0",allows-prereleases = true} +black = {version = "^19.10b0",allow-prereleases = true} [tool.poetry.scripts] jrnl = 'jrnl.cli:run' From f10cb4d4f89ac6f4ff4e42e8258c9926542e2764 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 25 Jan 2020 12:13:54 -0800 Subject: [PATCH 3/4] add maintainer field to config --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 284da2ba..c53a175c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,9 @@ authors = [ "Jonathan Wren ", "Micah Ellison " ] +maintainers = [ + "Jonathan Wren and Micah Ellison ", +] license = "MIT" readme = "README.md" homepage = "https://jrnl.sh" From 879733a59f5b91c37ddf96c1be88dbdeb10e7cdb Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 25 Jan 2020 12:14:09 -0800 Subject: [PATCH 4/4] update poetry version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c53a175c..bc557beb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "jrnl" -version = "v2.1.1" +version = "v2.2-beta" description = "Collect your thoughts and notes without leaving the command line." authors = [ "Manuel Ebert ",