Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1.3.0 release #137

Merged
merged 2 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 32 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,33 @@
# Change Log

## [Unreleased]
## [v1.3.0]

**Release date: 2023-11-14**

This release has two user-facing changes: the addition and removal of
support for Python versions, and fixed reification directions for a
few roles. Most of the changes in this release are for maintenance,
such as updates to the way docs are built ([#131]), how the project is
managed ([#126]), and how CI workflows are run ([#124]).

### Python Versions

* Removed support for Python 3.6
* Removed support for Python 3.7
* Added support for Python 3.10
* Added support for Python 3.11
* Added support for Python 3.12
* Removed support for Python 3.6 ([#123])
* Removed support for Python 3.7 ([#123])
* Added support for Python 3.10 ([#123])
* Added support for Python 3.11 ([#123])
* Added support for Python 3.12 ([#123])

### Fixed

* Swapped source/target for reifications ([#122])
- `:accompanier`
- `:example`
- `:poss`

### Removed

* The installation extras `test`, `docs`, and `dev` ([#125])


## [v1.2.2]
Expand Down Expand Up @@ -762,6 +781,7 @@ First release with very basic functionality.
[v1.2.0]: ../../releases/tag/v1.2.0
[v1.2.1]: ../../releases/tag/v1.2.1
[v1.2.2]: ../../releases/tag/v1.2.2
[v1.3.0]: ../../releases/tag/v1.3.0
[README]: README.md

[#4]: https://github.com/goodmami/penman/issues/4
Expand Down Expand Up @@ -828,3 +848,9 @@ First release with very basic functionality.
[#95]: https://github.com/goodmami/penman/issues/95
[#99]: https://github.com/goodmami/penman/issues/99
[#109]: https://github.com/goodmami/penman/issues/109
[#122]: https://github.com/goodmami/penman/issues/122
[#123]: https://github.com/goodmami/penman/issues/123
[#124]: https://github.com/goodmami/penman/issues/124
[#125]: https://github.com/goodmami/penman/issues/125
[#126]: https://github.com/goodmami/penman/issues/126
[#131]: https://github.com/goodmami/penman/issues/131
2 changes: 1 addition & 1 deletion penman/__about__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '1.2.2'
__version__ = '1.3.0'
__version_info__ = tuple(
int(x) if x.isdigit() else x
for x in __version__.replace('.', ' ').replace('-', ' ').split()
Expand Down
Loading