Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tfeldmann committed Feb 19, 2024
1 parent bb5466e commit f5595b8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@
## [Unreleased]

- Integrated `.docx`, `.pdf` and various raw text parsers into `filecontent` filter.
- Removed `textract` and ~50 MB of dependencies as they are no longer needed.
- Python 3.12 support
- Removed `textract` and ~50 MB of dependencies as they are no longer required.
- Full Python 3.12 support
- Add support for piping in a config file from STDIN (`organize run --stdin < file.yml`)

**Important:**

You may have to adjust your `filecontent` regexes. The output should be a bit cleaner
now.

## v3.1.2 (2024-02-16)

- Fixes a validation error where correctly defined actions were not accepted in Python 3.12.2.
Expand Down
6 changes: 5 additions & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ def set_version(args):
# change WIP to version number and date
changes = match.group(1)
today = datetime.now().strftime("%Y-%m-%d")
changelog = wip_regex.sub(f"## v{version} ({today})\n{changes}", changelog, count=1)
changelog = wip_regex.sub(
f"## [Unreleased]\n\n## v{version} ({today})\n{changes}",
changelog,
count=1,
)

# write changelog
with open(CURRENT_FOLDER / "CHANGELOG.md", "w") as f:
Expand Down

0 comments on commit f5595b8

Please sign in to comment.