From ce8e413c99ee4b1f2c5d5e06945597f5befdf7e5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Chris=20M=C3=BCller?=
<2566282+brotkrueml@users.noreply.github.com>
Date: Thu, 26 May 2022 10:12:10 +0200
Subject: [PATCH] [RELEASE] Prepare version 1.3.0
---
CHANGELOG.md | 7 +++++--
docs/changelog.rst | 7 +++++--
docs/conf.py | 2 +-
src/Information/Version.php | 2 +-
4 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2ff2cb0..8223152 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,8 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
+## [1.3.0] - 2022-05-26
+
### Added
-- Allow to customise client options (#3)
+- Configuration of client options (#3)
- Compatibility with JobRouter® 2022.2
## [1.2.0] - 2022-03-05
@@ -48,7 +50,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
First stable release
-[Unreleased]: https://github.com/brotkrueml/jobrouter-client/compare/v1.2.0...HEAD
+[Unreleased]: https://github.com/brotkrueml/jobrouter-client/compare/v1.3.0...HEAD
+[1.3.0]: https://github.com/brotkrueml/jobrouter-client/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/brotkrueml/jobrouter-client/compare/v1.1.2...v1.2.0
[1.1.2]: https://github.com/brotkrueml/jobrouter-client/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/brotkrueml/jobrouter-client/compare/v1.1.0...v1.1.1
diff --git a/docs/changelog.rst b/docs/changelog.rst
index bf4591f..afe4529 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -8,14 +8,17 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog `_\ , and this project adheres
to `Semantic Versioning `_.
-`Unreleased `_
+`Unreleased `_
----------------------------------------------------------------------------------------
+`1.3.0 `_ - 2022-05-26
+--------------------------------------------------------------------------------------------------
+
Added
^^^^^
-* Allow to customise client options (#3)
+* Configuration of client options (#3)
* Compatibility with JobRouter® 2022.2
`1.2.0 `_ - 2022-03-05
diff --git a/docs/conf.py b/docs/conf.py
index 68c546d..2dfe1df 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -27,7 +27,7 @@
# The short X.Y version
version = u'1.3'
# The full version, including alpha/beta/rc tags
-release = u'1.3.0-dev'
+release = u'1.3.0'
# -- General configuration ---------------------------------------------------
diff --git a/src/Information/Version.php b/src/Information/Version.php
index 6f6290f..9e9399e 100644
--- a/src/Information/Version.php
+++ b/src/Information/Version.php
@@ -19,7 +19,7 @@
*/
final class Version
{
- private const VERSION = '1.3.0-dev';
+ private const VERSION = '1.3.0';
public function getVersion(): string
{