Compare commits

...

7 commits

Author SHA1 Message Date
Jrnl Bot
1129a6d3ea Increment version to v2.4.5 2020-07-31 16:39:22 +00:00
Jonathan Wren
0c9e4f1f76 Add missing packaging dependency (#1011) 2020-07-29 15:22:49 -07:00
Jrnl Bot
345b6ad522 Increment version to v2.4.4 2020-07-25 16:35:04 -07:00
Jrnl Bot
18f6d2bc80 Update changelog [ci skip] 2020-07-25 16:34:19 -07:00
Jonathan Wren
825ee6d60f Fix readthedocs.io build process (#1004)
* fix readthedocs.io build process
2020-07-25 16:34:17 -07:00
Jrnl Bot
c16920e764 Update changelog [ci skip] 2020-07-25 16:34:16 -07:00
Jrnl Bot
3f3a17c32e Increment version to v2.4.4-beta 2020-07-25 16:34:09 -07:00
6 changed files with 32 additions and 8 deletions

View file

@ -1,8 +1,8 @@
# Changelog
## [Unreleased](https://github.com/jrnl-org/jrnl/)
## [v2.4.4](https://pypi.org/project/jrnl/v2.4.4/) (2020-07-25)
[Full Changelog](https://github.com/jrnl-org/jrnl/compare/v2.4.3...HEAD)
[Full Changelog](https://github.com/jrnl-org/jrnl/compare/v2.4.4...v2.4.3)
**Implemented enhancements:**
@ -12,7 +12,7 @@
**Fixed bugs:**
- Allow editing of DayOne entries [\#1001](https://github.com/jrnl-org/jrnl/pull/1001) ([wren](https://github.com/wren))
- Allow editing of DayOne entries [\#1001](https://github.com/jrnl-org/jrnl/pull/1001) ([minchinweb](https://github.com/minchinweb), [micahellison](https://github.com/micahellison), [wren](https://github.com/wren))
- Create journal with absolute path when no path is specified [\#972](https://github.com/jrnl-org/jrnl/pull/972) ([eshrh](https://github.com/eshrh))
**Build:**

1
docs/requirements.txt Normal file
View file

@ -0,0 +1 @@
mkdocs==1.1

View file

@ -1 +1 @@
__version__ = "v2.4.3-beta"
__version__ = "v2.4.5"

6
poetry.lock generated
View file

@ -314,7 +314,7 @@ tgrep = ["pyparsing"]
twitter = ["twython"]
[[package]]
category = "dev"
category = "main"
description = "Core utilities for Python packages"
name = "packaging"
optional = false
@ -420,7 +420,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
version = "2.2.0"
[[package]]
category = "dev"
category = "main"
description = "Python parsing module"
name = "pyparsing"
optional = false
@ -602,7 +602,7 @@ docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
testing = ["jaraco.itertools", "func-timeout"]
[metadata]
content-hash = "72b606d9ecfdfe78e24c580ac0a4fd9e78823fdd63be714da316cbb55fc7f037"
content-hash = "7501ac8306b65f63e3e470a35e25dd9d3d8c911c21b3a9d61a267e3945f4c1e5"
python-versions = ">=3.6.0, <3.9.0"
[metadata.files]

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "jrnl"
version = "v2.4.3-beta"
version = "v2.4.5"
description = "Collect your thoughts and notes without leaving the command line."
authors = [
"Manuel Ebert <manuel@1450.me>",
@ -29,6 +29,7 @@ colorama = "^0.4.1"
python-dateutil = "^2.8"
pyyaml = "^5.1"
ansiwrap = "^0.8.4"
packaging = "^20.4"
[tool.poetry.dev-dependencies]
behave = "^1.2"

22
readthedocs.yml Normal file
View file

@ -0,0 +1,22 @@
# readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory
mkdocs:
configuration: mkdocs.yml
fail_on_warning: false
# Optionally build your docs in additional formats such as PDF
formats:
- pdf
- epub
# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
install:
- requirements: docs/requirements.txt