Skip to content

Commit

Permalink
Prepare for v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Jul 6, 2020
1 parent 5fa909d commit 20bdf9b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [v1.1.0]

**Release date: 2020-07-06**

A no-op model is added to allow inspection of graphs without
deinverting triples, and Penman is now a bit more threadsafe for
multiprocessing applications.

### Added

* `penman.layout.Pop` class is now part of the public API ([#85])
Expand Down Expand Up @@ -680,6 +686,7 @@ First release with very basic functionality.
[v0.11.1]: ../../releases/tag/v0.11.1
[v0.12.0]: ../../releases/tag/v0.12.0
[v1.0.0]: ../../releases/tag/v1.0.0
[v1.1.0]: ../../releases/tag/v1.1.0
[README]: README.md

[#4]: https://github.com/goodmami/penman/issues/4
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__ = '1.0.0'
__version__ = '1.1.0'
__version_info__ = tuple(
int(x) if x.isdigit() else x
for x in __version__.replace('.', ' ').replace('-', ' ').split()
Expand Down

0 comments on commit 20bdf9b

Please sign in to comment.