Skip to content

Commit

Permalink
[RELEASE] Prepare version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brotkrueml committed Oct 2, 2021
1 parent dd28796 commit 5b1b96e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2021-10-02

### Added
- Compatibility with PHP 8.0 and 8.1
- Compatibility with JobRouter® 5.2
Expand All @@ -23,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
First stable release


[Unreleased]: https://github.com/brotkrueml/jobrouter-client/compare/v1.0.1...HEAD
[Unreleased]: https://github.com/brotkrueml/jobrouter-client/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/brotkrueml/jobrouter-client/compare/v1.0.1...v1.1.0
[1.0.1]: https://github.com/brotkrueml/jobrouter-client/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/brotkrueml/jobrouter-client/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = u'1.1'
# The full version, including alpha/beta/rc tags
release = u'1.1.0-dev'
release = u'1.1.0'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions src/Information/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
*/
final class Version
{
private const VERSION = '1.1.0-dev';
private const VERSION = '1.1.0';

public function getVersion(): string
{
return static::VERSION;
return self::VERSION;
}
}

0 comments on commit 5b1b96e

Please sign in to comment.