Skip to content

Commit

Permalink
Release 1.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermocalvo committed Sep 2, 2024
1 parent c5e4738 commit ba49ca9
Show file tree
Hide file tree
Showing 4 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 @@ -7,9 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Pragmatic Versioning](https://pragver.github.io/spec/1.0.0.0.html).


## Unreleased
## [1.0.0.0]

### Added

- Class `com.leakyabstractions.result.jackson.ResultBuilder`.
- Class `com.leakyabstractions.result.jackson.ResultModule`.


[1.0.0.0]: https://github.com/LeakyAbstractions/result-jackson/releases/tag/1.0.0.0
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
theme: jekyll-theme-leap-day
title: Lazy Results
description: Jackson datatype module for Result
current_version: 0.8.3.0
current_version: 1.0.0.0
show_downloads: true
logo: https://dev.leakyabstractions.com/result/result-banner.png
exclude:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = Serialize and deserialize Result objects with Jackson
group = com.leakyabstractions
artifactName = Jackson datatype module for Results
artifactId = result-jackson
version = 0.8.4.0-SNAPSHOT
version = 1.0.0.0
previousVersion = 0.8.3.0

homepage = https://result.leakyabstractions.com/add-ons/jackson
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class ResultModule extends SimpleModule {
private static final String GROUP_ID = "com.leakyabstractions";
private static final String ARTIFACT_ID = "result-jackson";

private static final int[] VERSION_NUMBERS = { 0, 8, 3, 0 };
private static final int[] VERSION_NUMBERS = { 1, 0, 0, 0 };
private static final String VERSION_SNAPSHOT = null;

private static final int VERSION_GRADE = VERSION_NUMBERS[0];
Expand Down

0 comments on commit ba49ca9

Please sign in to comment.