Skip to content

Commit

Permalink
Prepare for v0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Nov 21, 2019
1 parent d8f5e2e commit 0aa8dca
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@

(no unreleased changes yet)

## [v0.7.1][v0.7.1]

The [v0.7.0][v070] release was missing a declaration for the new
`penman.models` sub-package, so it was not available for new
installs. This release fixes that.

### Fixed

* The `penman.models` package is now declared in `setup.py`
* The documentation now looks one level up when building (this is just
"in case", as I think the missing package problem was the real
culprit for faulty documentation builds.)

## [v0.7.0][v0.7.0]

This release comprises a major restructuring from previous
Expand Down Expand Up @@ -368,4 +381,5 @@ First release with very basic functionality.
[v0.6.1]: ../../releases/tag/v0.6.1
[v0.6.2]: ../../releases/tag/v0.6.2
[v0.7.0]: ../../releases/tag/v0.7.0
[v0.7.1]: ../../releases/tag/v0.7.1
[README]: README.md
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = 'v0.7'
# The full version, including alpha/beta/rc tags
release = 'v0.7.0'
release = 'v0.7.1'


# -- General configuration ---------------------------------------------------
Expand Down
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__ = '0.7.0'
__version__ = '0.7.1'
__version_info__ = [
int(x) if x.isdigit() else x
for x in __version__.replace('.', ' ').replace('-', ' ').split()
Expand Down

0 comments on commit 0aa8dca

Please sign in to comment.