Releases: karlicoss/orgparse
Releases · karlicoss/orgparse
v0.4.20231004: new release, mainly switch to pyproject.toml
What's Changed
- small ci updates; remove python2 compat stuff by @karlicoss in #64
- update to src/ structure and use pyproject.toml by @karlicoss in #65
- ci updates by @karlicoss in #66
Full Changelog: v0.3.2...v0.4.20231004
new release
support open CLOCK dates
- feature: support open CLOCK dates #49 (thanks @tbruckmaier !)
release
support Effort property properly
v0.2.4 update ci config
fix regression in `orgparse.load` method
fix regression in orgparse.load method for file-like objects broken in https://github.com/karlicoss/orgparse/commit/30671890e38db0c7becab12dfda6ff7d97496a8b see https://github.com/karlicoss/orgparse/issues/32
only split filetags by ':'
v0.2.2 only split filetags by ':'
fix typo in py.typed so mypy checks work
v0.2.1 fix: py.typed typo
release
- BREAKING: drop support for python2/python3.5
This is to support typing annotations (more specifically,typing
module).
If you don't have a choice of using a newer Python version for some reason, you can install the previous version (pip install 'orgparse=0.1.4'
), there weren't many API changes anyway. - better file properties handling #28 #30
- keep linenumber information in the nodes #25
- parse tables (available via
body_rich
property) #29 - improvements to treat
OrgRootNode
more likeOrgNode
with fallbacks