Skip to content

Commit

Permalink
Release v2.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jodastephen committed Sep 15, 2024
1 parent 4d2a899 commit 0e45c95
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Various documentation is available:


### Releases
[Release 2.12.7](https://www.joda.org/joda-time/download.html) is the current latest release.
[Release 2.13.0](https://www.joda.org/joda-time/download.html) is the current latest release.
This release is considered stable and worthy of the 2.x tag.
It depends on JDK 1.5 or later.

Expand All @@ -65,13 +65,13 @@ Available in the [Maven Central repository](https://search.maven.org/search?q=g:
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.12.7</version>
<version>2.13.0</version>
</dependency>
```

**Gradle configuration:**
```groovy
compile 'joda-time:joda-time:2.12.7'
compile 'joda-time:joda-time:2.13.0'
```


Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<artifactId>joda-time</artifactId>
<packaging>jar</packaging>
<name>Joda-Time</name>
<version>2.12.7</version>
<version>2.13.0</version>
<description>Date and time library to replace JDK date handling</description>
<url>https://www.joda.org/joda-time/</url>

Expand Down
12 changes: 12 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,22 @@

<!-- types are add, fix, remove, update -->
<release version="2.13.0" date="SNAPSHOT" description="v2.13.0">
<action dev="jodastephen" type="update">
DateTimeZone data updated to version 2024bgtz.
This release retires the American short zone IDs - EST, MST, HST, EST5EDT, CST6CDT, MST7MDT and PST8PDT.
Creating a zone with one of these IDs will return the modern alternative, for example 'MST' is mapped to 'America/Phoenix'.
The European zone IDs - WET, CET and EET - are retained.
The non-standard European zone ID 'MET' is mapped to the standard form of 'CET'.
Note that these changes have no impact to current or future timestamps.
</action>
<action dev="jodastephen" type="fix">
Enhance the parser to better match specification of zic.
Fixes #785.
</action>
<action dev="klopfdreh" type="add">
Enhanced support for native image building.
Fixes #784.
</action>
</release>
<release version="2.12.7" date="2024-02-04" description="v2.12.7">
<action dev="jodastephen" type="update">
Expand Down
20 changes: 10 additions & 10 deletions src/conf/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ Package: org.joda.time
Extension-Name: joda-time
Specification-Title: Joda-Time
Specification-Vendor: Joda.org
Specification-Version: 2.12
Specification-Version: 2.13
Implementation-Vendor: Joda.org
Implementation-Title: org.joda.time
Implementation-Version: 2.12.7
Implementation-Version: 2.13.0
Implementation-Vendor-Id: org.joda
Bundle-ManifestVersion: 2
Bundle-Vendor: Joda.org
Bundle-Name: Joda-Time
Bundle-SymbolicName: joda-time
Bundle-Version: 2.12.7
Export-Package: org.joda.time;version=2.12.7,
org.joda.time.base;version=2.12.7,
org.joda.time.chrono;version=2.12.7,
org.joda.time.convert;version=2.12.7,
org.joda.time.field;version=2.12.7,
org.joda.time.format;version=2.12.7,
org.joda.time.tz;version=2.12.7
Bundle-Version: 2.13.0
Export-Package: org.joda.time;version=2.13.0,
org.joda.time.base;version=2.13.0,
org.joda.time.chrono;version=2.13.0,
org.joda.time.convert;version=2.13.0,
org.joda.time.field;version=2.13.0,
org.joda.time.format;version=2.13.0,
org.joda.time.tz;version=2.13.0
Bundle-License: Apache 2.0
Bundle-DocURL: https://www.joda.org/joda-time/
4 changes: 2 additions & 2 deletions src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Joda-Time is licenced under the business friendly <a href="licenses.html">Apache

## <i></i> Releases

[Release 2.12.7](download.html) is the current latest release.
[Release 2.13.0](download.html) is the current latest release.
This release is considered stable and worthy of the 2.x tag.
See the [change notes](changes-report.html) for full details.

Expand All @@ -146,7 +146,7 @@ Available in [Maven Central](https://search.maven.org/search?q=g:joda-time%20AND
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.12.7</version>
<version>2.13.0</version>
</dependency>
```

Expand Down

0 comments on commit 0e45c95

Please sign in to comment.