Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project are documented in this file.
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).

## [1.2.1] - 2026-07-29

### Fixed
- No source code changes. `v1.2.0` was originally tagged before its corresponding pull request was merged into
`main`, so the published tag pointed to the pre-merge commit instead of the datacenter/worker id split described
in its release notes. The tag was corrected on GitHub, but JitPack had already cached a build under the
`v1.2.0` name pointing to the old commit. This release is a clean re-tag of the same `v1.2.0` code under a new
version, so JitPack builds it fresh. Depend on `v1.2.1` (not `v1.2.0`) to get the corrected code.

## [1.2.0] - 2026-07-29

### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ This check is implemented as an annotation processor bundled in `snowflake-jpa`.
<path>
<groupId>com.github.Fayupable.snowflake-id-java</groupId>
<artifactId>snowflake-jpa</artifactId>
<version>v1.2.0</version>
<version>v1.2.1</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.fayupable</groupId>
<artifactId>snowflake-id-java</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<packaging>pom</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions snowflake-benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.fayupable</groupId>
<artifactId>snowflake-benchmark</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
Expand All @@ -19,7 +19,7 @@
<dependency>
<groupId>com.fayupable</groupId>
<artifactId>snowflake-core</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
Expand Down
2 changes: 1 addition & 1 deletion snowflake-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.fayupable</groupId>
<artifactId>snowflake-id-java</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>snowflake-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion snowflake-jpa-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.fayupable</groupId>
<artifactId>snowflake-id-java</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>snowflake-jpa-spring</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion snowflake-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.fayupable</groupId>
<artifactId>snowflake-id-java</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>snowflake-jpa</artifactId>
Expand Down
Loading