Skip to content

Commit

Permalink
Release v2.10.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jodastephen committed Sep 23, 2021
1 parent 5a3cb28 commit e98903c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Various documentation is available:


### Releases
[Release 2.10.10](https://www.joda.org/joda-time/download.html) is the current latest release.
[Release 2.10.11](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 @@ -62,13 +62,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.10.10</version>
<version>2.10.11</version>
</dependency>
```

**Gradle configuration:**
```groovy
compile 'joda-time:joda-time:2.10.10'
compile 'joda-time:joda-time:2.10.11'
```

![Tidelift dependency check](https://tidelift.com/badges/github/JodaOrg/joda-time)
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.10.11-SNAPSHOT</version>
<version>2.10.11</version>
<description>Date and time library to replace JDK date handling</description>
<url>https://www.joda.org/joda-time/</url>

Expand Down
6 changes: 6 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
<body>

<!-- types are add, fix, remove, update -->
<release version="2.10.11" date="2021-09-23" description="v2.10.11">
<action dev="jodastephen" type="update">
Defend against possible release of hugely damaging timezone data.
See https://github.com/JodaOrg/joda-time/issues/566
</action>
</release>
<release version="2.10.10" date="2021-02-05" description="v2.10.10">
<action dev="jodastephen" type="update">
DateTimeZone data updated to version 2021a.
Expand Down
18 changes: 9 additions & 9 deletions src/conf/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ Specification-Vendor: Joda.org
Specification-Version: 2.10
Implementation-Vendor: Joda.org
Implementation-Title: org.joda.time
Implementation-Version: 2.10.10
Implementation-Version: 2.10.11
Implementation-Vendor-Id: org.joda
Bundle-ManifestVersion: 2
Bundle-Vendor: Joda.org
Bundle-Name: Joda-Time
Bundle-SymbolicName: joda-time
Bundle-Version: 2.10.10
Export-Package: org.joda.time;version=2.10.10,
org.joda.time.base;version=2.10.10,
org.joda.time.chrono;version=2.10.10,
org.joda.time.convert;version=2.10.10,
org.joda.time.field;version=2.10.10,
org.joda.time.format;version=2.10.10,
org.joda.time.tz;version=2.10.10
Bundle-Version: 2.10.11
Export-Package: org.joda.time;version=2.10.11,
org.joda.time.base;version=2.10.11,
org.joda.time.chrono;version=2.10.11,
org.joda.time.convert;version=2.10.11,
org.joda.time.field;version=2.10.11,
org.joda.time.format;version=2.10.11,
org.joda.time.tz;version=2.10.11
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 @@ -130,7 +130,7 @@ Joda-Time is licenced under the business friendly <a href="licenses.html">Apache

## <i></i> Releases

[Release 2.10.10](download.html) is the current latest release.
[Release 2.10.11](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 @@ -144,7 +144,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.10.10</version>
<version>2.10.11</version>
</dependency>
```

Expand Down
1 change: 1 addition & 0 deletions src/test/java/org/joda/time/TestDateTimeZone.java
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ public void testForID_String() {
}

public void testForID_ensureTzdb() {
// if these tests fail, check https://github.com/JodaOrg/joda-time/issues/566 for more info
assertEquals("Europe/Oslo", DateTimeZone.forID("Europe/Oslo").getID());
assertEquals("Europe/Stockholm", DateTimeZone.forID("Europe/Stockholm").getID());
assertEquals("Europe/Amsterdam", DateTimeZone.forID("Europe/Amsterdam").getID());
Expand Down

0 comments on commit e98903c

Please sign in to comment.