mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Compare commits
7 commits
Author | SHA1 | Date | |
---|---|---|---|
|
1129a6d3ea | ||
|
0c9e4f1f76 | ||
|
345b6ad522 | ||
|
18f6d2bc80 | ||
|
825ee6d60f | ||
|
c16920e764 | ||
|
3f3a17c32e |
6 changed files with 32 additions and 8 deletions
|
@ -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
1
docs/requirements.txt
Normal file
|
@ -0,0 +1 @@
|
|||
mkdocs==1.1
|
|
@ -1 +1 @@
|
|||
__version__ = "v2.4.3-beta"
|
||||
__version__ = "v2.4.5"
|
||||
|
|
6
poetry.lock
generated
6
poetry.lock
generated
|
@ -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]
|
||||
|
|
|
@ -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
22
readthedocs.yml
Normal 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
|
Loading…
Add table
Reference in a new issue