Skip to content

Commit

Permalink
Bump version to 3.0b7
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Nov 19, 2022
1 parent 0db346d commit 201e439
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 35 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

# 2.0 (2019-11-30)

- **BREAKING:** Switched to SHA256 for tracking changes to files and reviews of extended attributes. Use `doorstop review all` followed by `doorstop clear all` to update an existing project. WARNING: This marks all items as reviewed and clears all suspect links.
- **BREAKING:** Switched to SHA256 for tracking changes to files and reviews of extended attributes. Use `doorstop review all` followed by `doorstop clear all` to update an existing project. WARNING: This marks all items as reviewed and clears all suspect links.
- Dropped support for Python 3.5.
- Fixed a bug with items not getting saved after edits.
- Added the ability to explicitly name a requirement.
Expand All @@ -53,9 +53,9 @@

- Added preliminary support for item headers. ([@rickeywang](https://github.com/doorstop-dev/doorstop/pull/285))
- Added major enhancements to the Desktop GUI. ([@elarivie](https://github.com/doorstop-dev/doorstop/pull/290))
+ Converted document outline to a tree view.
+ Made documents navigable via clicking links.
+ Added an icon for Linux and Windows.
- Converted document outline to a tree view.
- Made documents navigable via clicking links.
- Added an icon for Linux and Windows.
- Fixed duplicate headings when publishing. ([@guille-r](https://github.com/doorstop-dev/doorstop/pull/302))
- Added Python 3.7 support.

Expand All @@ -79,7 +79,7 @@
# 1.2 (2017-02-11)

- Disabled excessive text cleanup in items. ([@michaelnt](https://github.com/michaelnt))
+ Running `doorstop review all` will be required due to whitespace changes.
- Running `doorstop review all` will be required due to whitespace changes.
- Added `--no-levels={all,body}` publishing options. ([@michaelnt](https://github.com/michaelnt))
- Removed unnecessary line breaks (`<br>`) in generated HTML. ([@michaelnt](https://github.com/michaelnt))
- **DEPRECATION WARNING:** `--no-body-levels` will not be supported in a future release.
Expand Down
4 changes: 3 additions & 1 deletion doorstop/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,5 +342,7 @@ def dump_markdown(data, textattr):

content += textattr["text"]

text = frontmatter.dumps(frontmatter.Post(content, **data), Dumper=yaml.dumper.Dumper)
text = frontmatter.dumps(
frontmatter.Post(content, **data), Dumper=yaml.dumper.Dumper
)
return text
34 changes: 6 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]

name = "doorstop"
version = "3.0b6"
version = "3.0b7"
description = "Requirements management using version control."

license = "LGPLv3"
Expand Down

0 comments on commit 201e439

Please sign in to comment.