Skip to content

Commit e98903c

Browse files
committed
Release v2.10.11
1 parent 5a3cb28 commit e98903c

File tree

6 files changed

+22
-15
lines changed

6 files changed

+22
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Various documentation is available:
5151

5252

5353
### Releases
54-
[Release 2.10.10](https://www.joda.org/joda-time/download.html) is the current latest release.
54+
[Release 2.10.11](https://www.joda.org/joda-time/download.html) is the current latest release.
5555
This release is considered stable and worthy of the 2.x tag.
5656
It depends on JDK 1.5 or later.
5757

@@ -62,13 +62,13 @@ Available in the [Maven Central repository](https://search.maven.org/search?q=g:
6262
<dependency>
6363
<groupId>joda-time</groupId>
6464
<artifactId>joda-time</artifactId>
65-
<version>2.10.10</version>
65+
<version>2.10.11</version>
6666
</dependency>
6767
```
6868

6969
**Gradle configuration:**
7070
```groovy
71-
compile 'joda-time:joda-time:2.10.10'
71+
compile 'joda-time:joda-time:2.10.11'
7272
```
7373

7474
![Tidelift dependency check](https://tidelift.com/badges/github/JodaOrg/joda-time)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<artifactId>joda-time</artifactId>
99
<packaging>jar</packaging>
1010
<name>Joda-Time</name>
11-
<version>2.10.11-SNAPSHOT</version>
11+
<version>2.10.11</version>
1212
<description>Date and time library to replace JDK date handling</description>
1313
<url>https://www.joda.org/joda-time/</url>
1414

src/changes/changes.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
<body>
99

1010
<!-- types are add, fix, remove, update -->
11+
<release version="2.10.11" date="2021-09-23" description="v2.10.11">
12+
<action dev="jodastephen" type="update">
13+
Defend against possible release of hugely damaging timezone data.
14+
See https://github.com/JodaOrg/joda-time/issues/566
15+
</action>
16+
</release>
1117
<release version="2.10.10" date="2021-02-05" description="v2.10.10">
1218
<action dev="jodastephen" type="update">
1319
DateTimeZone data updated to version 2021a.

src/conf/MANIFEST.MF

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ Specification-Vendor: Joda.org
55
Specification-Version: 2.10
66
Implementation-Vendor: Joda.org
77
Implementation-Title: org.joda.time
8-
Implementation-Version: 2.10.10
8+
Implementation-Version: 2.10.11
99
Implementation-Vendor-Id: org.joda
1010
Bundle-ManifestVersion: 2
1111
Bundle-Vendor: Joda.org
1212
Bundle-Name: Joda-Time
1313
Bundle-SymbolicName: joda-time
14-
Bundle-Version: 2.10.10
15-
Export-Package: org.joda.time;version=2.10.10,
16-
org.joda.time.base;version=2.10.10,
17-
org.joda.time.chrono;version=2.10.10,
18-
org.joda.time.convert;version=2.10.10,
19-
org.joda.time.field;version=2.10.10,
20-
org.joda.time.format;version=2.10.10,
21-
org.joda.time.tz;version=2.10.10
14+
Bundle-Version: 2.10.11
15+
Export-Package: org.joda.time;version=2.10.11,
16+
org.joda.time.base;version=2.10.11,
17+
org.joda.time.chrono;version=2.10.11,
18+
org.joda.time.convert;version=2.10.11,
19+
org.joda.time.field;version=2.10.11,
20+
org.joda.time.format;version=2.10.11,
21+
org.joda.time.tz;version=2.10.11
2222
Bundle-License: Apache 2.0
2323
Bundle-DocURL: https://www.joda.org/joda-time/

src/site/markdown/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Joda-Time is licenced under the business friendly <a href="licenses.html">Apache
130130

131131
## <i></i> Releases
132132

133-
[Release 2.10.10](download.html) is the current latest release.
133+
[Release 2.10.11](download.html) is the current latest release.
134134
This release is considered stable and worthy of the 2.x tag.
135135
See the [change notes](changes-report.html) for full details.
136136

@@ -144,7 +144,7 @@ Available in [Maven Central](https://search.maven.org/search?q=g:joda-time%20AND
144144
<dependency>
145145
<groupId>joda-time</groupId>
146146
<artifactId>joda-time</artifactId>
147-
<version>2.10.10</version>
147+
<version>2.10.11</version>
148148
</dependency>
149149
```
150150

src/test/java/org/joda/time/TestDateTimeZone.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ public void testForID_String() {
251251
}
252252

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

0 commit comments

Comments
 (0)