Skip to content

Commit

Permalink
Preparing for release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gfrances committed May 12, 2021
1 parent 687f28c commit 7d955e5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Changed
### Added
### Removed
### Deprecated
### Fixed

## [0.7.0]
### Added
- Added some basic forward search capabilities.
- Added some basic forward search capabilities (#101).
- Import psutil module conditionally, to offer better support for non-Linux
platforms where it is not available (see discussion in #99).

### Removed
- Removed support for `PySDD` and `sdd` extra, which was largely unused, and
Expand Down
2 changes: 1 addition & 1 deletion docs/development/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Docs: <https://packaging.python.org/tutorials/packaging-projects/>

1. Update the `CHANGELOG.md` file.
1. Update the version number in `src/tarski/version.py`
1. Commit.
1. Commit. Use message like "Preparing for release 0.6.0".
1. Go to the `master` branch and merge the `devel` branch.
1. Tag the release.
```bash
Expand Down
2 changes: 1 addition & 1 deletion src/tarski/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

__version_info__ = (0, 6, 0)
__version_info__ = (0, 7, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 7d955e5

Please sign in to comment.