Fix snapshot version number

This commit is contained in:
Erik C. Thauvin 2023-08-19 01:10:28 -07:00
parent c8aee7158c
commit 747010a193
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId> <groupId>net.thauvin.erik</groupId>
<artifactId>semver</artifactId> <artifactId>semver</artifactId>
<version>1.2.2-SNAPSHOT</version> <version>1.2.1-SNAPSHOT</version>
<name>SemVer</name> <name>SemVer</name>
<description>Semantic Version Annotation Processor</description> <description>Semantic Version Annotation Processor</description>
<url>https://github.com/ethauvin/semver</url> <url>https://github.com/ethauvin/semver</url>

View file

@ -52,7 +52,7 @@ public class SemverBuild extends Project {
public SemverBuild() { public SemverBuild() {
pkg = "net.thauvin.erik"; pkg = "net.thauvin.erik";
name = "SemVer"; name = "SemVer";
version = version(1, 2, 2, "SNAPSHOT"); version = version(1, 2, 1, "SNAPSHOT");
var description = "Semantic Version Annotation Processor"; var description = "Semantic Version Annotation Processor";
var url = "https://github.com/ethauvin/semver"; var url = "https://github.com/ethauvin/semver";