M CHANGELOG.md => CHANGELOG.md +4 -2
@@ 5,6 5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
+
+## [1.0.0] - 2021-01.27
### Changes
- Update minimum Python version to 3.6
@@ 71,7 73,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2019-06-18
- Initial Python release
-[Unreleased]: https://github.com/gpanders/pushbroom/compare/v0.3.2...HEAD
+[Unreleased]: https://github.com/gpanders/pushbroom/compare/v1.0.0...HEAD
+[1.0.0]: https://github.com/gpanders/pushbroom/compare/v0.3.2...v1.0.0
[0.3.2]: https://github.com/gpanders/pushbroom/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/gpanders/pushbroom/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/gpanders/pushbroom/compare/v0.2.1...v0.3.0
@@ 83,4 86,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[0.1.2]: https://github.com/gpanders/pushbroom/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/gpanders/pushbroom/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/gpanders/pushbroom/releases/tag/v0.1.0
-
M pyproject.toml => pyproject.toml +2 -2
@@ 1,8 1,8 @@
[tool.poetry]
name = "pushbroom"
-version = "0.3.2-1"
+version = "1.0.0"
description = "Clean up your filesystem"
-authors = ["Greg Anders <greg@gpanders.com>"]
+authors = ["Gregory Anders <greg@gpanders.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/gpanders/pushbroom"
M src/pushbroom/__init__.py => src/pushbroom/__init__.py +1 -1
@@ 1,3 1,3 @@
-__version__ = "v0.3.2"
+__version__ = "v1.0.0"
from .sweep import sweep