summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel M. Capella <polyzen@archlinux.org>2022-05-03 22:08:24 -0400
committerDaniel M. Capella <polyzen@archlinux.org>2022-05-04 01:23:29 -0400
commit5350d1e4e826bca62e33f3a81be702b05b8c8063 (patch)
tree14d142d43d56b97e3ef7746cc4828100b8f3cc6a
parentb089ccad46109a1cb9a23be10007672b5781076a (diff)
Fix version bump oversights
Signed-off-by: Daniel M. Capella <polyzen@archlinux.org>
-rw-r--r--CHANGES.md13
-rw-r--r--configure.ac2
-rw-r--r--doc/release-procedure.txt2
3 files changed, 9 insertions, 8 deletions
diff --git a/CHANGES.md b/CHANGES.md
index b4af3e2..3a75547 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
### Fixed
+- Fix version bump oversights
## [1.5.0] - 2022-05-03
@@ -130,10 +131,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added vim highlighting for PKGBUILDs.
-[Unreleased]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.4.0...master
-[1.0.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v0.0.1...v1.0.0
-[1.1.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.0.0...v1.1.0
-[1.2.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.1.0...v1.2.0
-[1.3.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.2.0...v1.3.0
-[1.4.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.3.0...v1.4.0
+[Unreleased]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.5.0...master
[1.5.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.4.0...v1.5.0
+[1.4.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.3.0...v1.4.0
+[1.3.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.2.0...v1.3.0
+[1.2.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.1.0...v1.2.0
+[1.1.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v1.0.0...v1.1.0
+[1.0.0]: https://gitlab.archlinux.org/pacman/pacman-contrib/-/compare/v0.0.1...v1.0.0
diff --git a/configure.ac b/configure.ac
index a6e1287..668174f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([pacman-contrib], [1.4.0], [pacman-contrib@lists.archlinux.org])
+AC_INIT([pacman-contrib], [1.5.0], [pacman-contrib@lists.archlinux.org])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AC_REQUIRE_AUX_FILE([tap-driver.sh])
diff --git a/doc/release-procedure.txt b/doc/release-procedure.txt
index 0805a32..aab3445 100644
--- a/doc/release-procedure.txt
+++ b/doc/release-procedure.txt
@@ -23,7 +23,7 @@ Assuming `$VERSION` is the version number in `X.Y.Z` format and `$REMOTE` is the
- Populate new `Unreleased` section.
- Add the Git log URL for the new tag to the bottom of the file.
- Bump the version in the `Unreleased` Git log URL.
-* `git add CHANGES.md`
+* `git add configure.ac CHANGES.md`
* `git commit -sm "Release v$VERSION"`
* `git tag -s v$VERSION -m v$VERSION`
* {blank}