Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for v3.0.0 #123

Merged
merged 1 commit into from
Oct 5, 2024
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
2 changes: 1 addition & 1 deletion .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Supported Versions

If a security issue occurs, only the latest version is guaranteed to be patched.
If a security issue occurs, only the latest versions of v3.x and v2.x are guaranteed to be patched.

## Reporting a Vulnerability

Expand Down
3 changes: 3 additions & 0 deletions .github/website.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ git commit --message "Update joda-convert from CI: $GITHUB_ACTION"
echo "## push..."
git push origin main

git push --delete origin website || true
git push --delete origin website2x || true

echo "## done"
13 changes: 12 additions & 1 deletion src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<body>
<!-- types are add, fix, remove, update -->
<release version="3.0.0-RC1" date="2024-08-11" description="Version 3.0.0-RC1">
<release version="3.0.0" date="2024-10-04" description="Version 3.0.0">
<action dev="jodastephen" type="add">
Major version based on Java SE 21.
Intended to be effectively compatible with v2.x.
Expand All @@ -29,6 +29,17 @@
New methods to find a converter returning `Optional`.
</action>
</release>
<release version="2.2.4" date="2024-10-04" description="Version 2.2.4">
<action dev="jodastephen" type="update">
Update dependencies.
Setup build system to be a maintainance branch.
</action>
</release>
<release version="3.0.0-RC1" date="2024-08-11" description="Version 3.0.0-RC1">
<action dev="jodastephen" type="add">
See v3.0.0 above.
</action>
</release>
<release version="2.2.3" date="2023-01-15" description="Version 2.2.3">
<action dev="jodastephen" type="add">
Support classes that define `@FromString` but not `@ToString`.
Expand Down
6 changes: 3 additions & 3 deletions src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ then the annotations are checked. If they are found, then the methods are called

## <i></i> Releases

The 3.x branch is compatible with Java SE 21 or later.
The 3.x branch (v3.0.0) is compatible with Java SE 21 or later.

The 2.x branch is compatible with Java SE 6 or later.
The 2.x branch (v2.2.4) is compatible with Java SE 6 or later.

v3.x releases are compatible with v2.x releases, however the `module-info.class` file is always present,
and the oldest development pre-release of JSR-310 is not recognized.
Expand All @@ -92,7 +92,7 @@ Available in the [Maven Central repository](https://search.maven.org/search?q=g:
<dependency>
<groupId>org.joda</groupId>
<artifactId>joda-convert</artifactId>
<version>2.2.3</version>
<version>3.0.0</version>
</dependency>
```

Expand Down