Skip to content

Commit 0ae5311

Browse files
committed
Release v2.10
1 parent cbffc55 commit 0ae5311

File tree

5 files changed

+20
-19
lines changed

5 files changed

+20
-19
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,24 +46,24 @@ Various documentation is available:
4646

4747

4848
### Releases
49-
[Release 2.9.9](http://www.joda.org/joda-time/download.html) is the current latest release.
49+
[Release 2.10](http://www.joda.org/joda-time/download.html) is the current latest release.
5050
This release is considered stable and worthy of the 2.x tag.
5151
It depends on JDK 1.5 or later.
5252

53-
Available in the [Maven Central repository](http://search.maven.org/#artifactdetails|joda-time|joda-time|2.9.9|jar)
53+
Available in the [Maven Central repository](http://search.maven.org/#artifactdetails|joda-time|joda-time|2.10|jar)
5454

5555
**Maven configuration:**
5656
```xml
5757
<dependency>
5858
<groupId>joda-time</groupId>
5959
<artifactId>joda-time</artifactId>
60-
<version>2.9.9</version>
60+
<version>2.10</version>
6161
</dependency>
6262
```
6363

6464
**Gradle configuration:**
6565
```groovy
66-
compile 'joda-time:joda-time:2.9.9'
66+
compile 'joda-time:joda-time:2.10'
6767
```
6868

6969
### Related projects
@@ -89,6 +89,7 @@ Historically, the project was at [Sourceforge](https://sourceforge.net/projects/
8989

9090
* Update version (pom.xml, README.md, index.md, MANIFEST.MF, changes.xml)
9191
* Commit and push
92+
* Ensure on Java SE 8
9293
* `mvn clean deploy -Doss.repo -Dgpg.passphrase=""`
9394
* Release project in [Nexus](https://oss.sonatype.org)
9495
* Website will be built and released by Travis

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.9.9</version>
11+
<version>2.10</version>
1212
<description>Date and time library to replace JDK date handling</description>
1313
<url>http://www.joda.org/joda-time/</url>
1414

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<body>
99

1010
<!-- types are add, fix, remove, update -->
11-
<release version="2.9.10" date="SNAPSHOT" description="v2.9.10">
11+
<release version="2.10" date="2018-05-30" description="v2.10">
1212
<action dev="jodastephen" type="update">
1313
DateTimeZone data updated to version 2018e.
1414
</action>

src/conf/MANIFEST.MF

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ Package: org.joda.time
22
Extension-Name: joda-time
33
Specification-Title: Joda-Time
44
Specification-Vendor: Joda.org
5-
Specification-Version: 2.9
5+
Specification-Version: 2.10
66
Implementation-Vendor: Joda.org
77
Implementation-Title: org.joda.time
8-
Implementation-Version: 2.9.9
8+
Implementation-Version: 2.10
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.9.9
15-
Export-Package: org.joda.time;version=2.9.9,
16-
org.joda.time.base;version=2.9.9,
17-
org.joda.time.chrono;version=2.9.9,
18-
org.joda.time.convert;version=2.9.9,
19-
org.joda.time.field;version=2.9.9,
20-
org.joda.time.format;version=2.9.9,
21-
org.joda.time.tz;version=2.9.9
14+
Bundle-Version: 2.10
15+
Export-Package: org.joda.time;version=2.10,
16+
org.joda.time.base;version=2.10,
17+
org.joda.time.chrono;version=2.10,
18+
org.joda.time.convert;version=2.10,
19+
org.joda.time.field;version=2.10,
20+
org.joda.time.format;version=2.10,
21+
org.joda.time.tz;version=2.10
2222
Bundle-License: Apache 2.0
2323
Bundle-DocURL: http://www.joda.org/joda-time/

src/site/markdown/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,21 +127,21 @@ Joda-Time is licenced under the business friendly <a href="license.html">Apache
127127

128128
## <i></i> Releases
129129

130-
[Release 2.9.9](download.html) is the current latest release.
130+
[Release 2.10](download.html) is the current latest release.
131131
This release is considered stable and worthy of the 2.x tag.
132132
See the [change notes](changes-report.html) for full details.
133133

134134
Joda-Time requires Java SE 5 or later and has [no dependencies](dependencies.html).
135135
There is a *compile-time* dependency on [Joda-Convert](http://www.joda.org/joda-convert/),
136136
but this is not required at runtime thanks to the magic of annotations.
137137

138-
Available in [Maven Central](http://search.maven.org/#artifactdetails%7Cjoda-time%7Cjoda-time%7C2.9.9%7Cjar).
138+
Available in [Maven Central](http://search.maven.org/#artifactdetails%7Cjoda-time%7Cjoda-time%7C2.10%7Cjar).
139139

140140
```xml
141141
<dependency>
142142
<groupId>joda-time</groupId>
143143
<artifactId>joda-time</artifactId>
144-
<version>2.9.9</version>
144+
<version>2.10</version>
145145
</dependency>
146146
```
147147

0 commit comments

Comments
 (0)