From 0ae53118955118d4618ccf8ae7cf1b6d96cbc02d Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Wed, 30 May 2018 14:36:44 +0100 Subject: [PATCH] Release v2.10 --- README.md | 9 +++++---- pom.xml | 2 +- src/changes/changes.xml | 2 +- src/conf/MANIFEST.MF | 20 ++++++++++---------- src/site/markdown/index.md | 6 +++--- 5 files changed, 20 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 56cadb89d..196701dcd 100644 --- a/README.md +++ b/README.md @@ -46,24 +46,24 @@ Various documentation is available: ### Releases -[Release 2.9.9](http://www.joda.org/joda-time/download.html) is the current latest release. +[Release 2.10](http://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. -Available in the [Maven Central repository](http://search.maven.org/#artifactdetails|joda-time|joda-time|2.9.9|jar) +Available in the [Maven Central repository](http://search.maven.org/#artifactdetails|joda-time|joda-time|2.10|jar) **Maven configuration:** ```xml joda-time joda-time - 2.9.9 + 2.10 ``` **Gradle configuration:** ```groovy -compile 'joda-time:joda-time:2.9.9' +compile 'joda-time:joda-time:2.10' ``` ### Related projects @@ -89,6 +89,7 @@ Historically, the project was at [Sourceforge](https://sourceforge.net/projects/ * Update version (pom.xml, README.md, index.md, MANIFEST.MF, changes.xml) * Commit and push +* Ensure on Java SE 8 * `mvn clean deploy -Doss.repo -Dgpg.passphrase=""` * Release project in [Nexus](https://oss.sonatype.org) * Website will be built and released by Travis diff --git a/pom.xml b/pom.xml index 4532a00d6..e0d2d3e2a 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ joda-time jar Joda-Time - 2.9.9 + 2.10 Date and time library to replace JDK date handling http://www.joda.org/joda-time/ diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 0e66f34f4..0e086e53f 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -8,7 +8,7 @@ - + DateTimeZone data updated to version 2018e. diff --git a/src/conf/MANIFEST.MF b/src/conf/MANIFEST.MF index 5b0defe0f..fa2c4ebf3 100644 --- a/src/conf/MANIFEST.MF +++ b/src/conf/MANIFEST.MF @@ -2,22 +2,22 @@ Package: org.joda.time Extension-Name: joda-time Specification-Title: Joda-Time Specification-Vendor: Joda.org -Specification-Version: 2.9 +Specification-Version: 2.10 Implementation-Vendor: Joda.org Implementation-Title: org.joda.time -Implementation-Version: 2.9.9 +Implementation-Version: 2.10 Implementation-Vendor-Id: org.joda Bundle-ManifestVersion: 2 Bundle-Vendor: Joda.org Bundle-Name: Joda-Time Bundle-SymbolicName: joda-time -Bundle-Version: 2.9.9 -Export-Package: org.joda.time;version=2.9.9, - org.joda.time.base;version=2.9.9, - org.joda.time.chrono;version=2.9.9, - org.joda.time.convert;version=2.9.9, - org.joda.time.field;version=2.9.9, - org.joda.time.format;version=2.9.9, - org.joda.time.tz;version=2.9.9 +Bundle-Version: 2.10 +Export-Package: org.joda.time;version=2.10, + org.joda.time.base;version=2.10, + org.joda.time.chrono;version=2.10, + org.joda.time.convert;version=2.10, + org.joda.time.field;version=2.10, + org.joda.time.format;version=2.10, + org.joda.time.tz;version=2.10 Bundle-License: Apache 2.0 Bundle-DocURL: http://www.joda.org/joda-time/ diff --git a/src/site/markdown/index.md b/src/site/markdown/index.md index da3d00b87..79e5c0608 100644 --- a/src/site/markdown/index.md +++ b/src/site/markdown/index.md @@ -127,7 +127,7 @@ Joda-Time is licenced under the business friendly Apache ## Releases -[Release 2.9.9](download.html) is the current latest release. +[Release 2.10](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. @@ -135,13 +135,13 @@ Joda-Time requires Java SE 5 or later and has [no dependencies](dependencies.htm There is a *compile-time* dependency on [Joda-Convert](http://www.joda.org/joda-convert/), but this is not required at runtime thanks to the magic of annotations. -Available in [Maven Central](http://search.maven.org/#artifactdetails%7Cjoda-time%7Cjoda-time%7C2.9.9%7Cjar). +Available in [Maven Central](http://search.maven.org/#artifactdetails%7Cjoda-time%7Cjoda-time%7C2.10%7Cjar). ```xml joda-time joda-time - 2.9.9 + 2.10 ```