Skip to content

Commit 211fa83

Browse files
#61 release prep
1 parent 13ca23b commit 211fa83

File tree

11 files changed

+19
-20
lines changed

11 files changed

+19
-20
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11

22
# Project: Jargon-core API
3-
#### Date:
4-
#### Release Version: 4.2.0.1-SNAPSHOT
5-
#### git tag:
6-
#### Developer: Mike Conway - DICE
3+
#### Date: 01/04/2018
4+
#### Release Version: 4.2.2.0-RELEASE
5+
#### git tag: 4.2.2.0-RELEASE
6+
#### Developer: Mike Conway
77

88
## News
99

1010
4.2.2 Compatability and maintenance
1111
for milestone: https://github.com/DICE-UNC/jargon/milestone/19
1212

13-
1413
=======
1514

1615
Please go to [[https://github.com/DICE-UNC/jargon]] for the latest news and info.
@@ -30,7 +29,7 @@ Jargon-core consists of the following libraries
3029

3130
* Jargon depends on Java 1.8+
3231
* Jargon is built using Apache Maven2, see POM for dependencies
33-
* Jargon supports iRODS 4.1.0 through 4.2.2
32+
* Jargon supports iRODS 4.1.0 through 4.2.2, it also maintains very reasonable backards compatability to iRODS 3.3.1 however this is no longer actively tested
3433

3534
## Libraries
3635

jargon-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.irods</groupId>
44
<artifactId>jargon</artifactId>
5-
<version>4.2.0.1-SNAPSHOT</version>
5+
<version>4.2.2.0-RELEASE</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<groupId>org.irods.jargon</groupId>

jargon-core/src/main/java/org/irods/jargon/core/packinstr/AuthReqPluginRequestInp.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ private AuthReqPluginRequestInp(final String authScheme, final String userName,
6464
this.userName = userName;
6565
IrodsVersion irodsVersion = new IrodsVersion(startupResponseData.getRelVersion());
6666

67-
if (!irodsVersion.hasVersionOfAtLeast("rods4.2.0")) {
68-
this.password = password.replaceAll(";", "\\\\;");
69-
} else {
70-
this.password = password;
71-
}
67+
// if (!irodsVersion.hasVersionOfAtLeast("rods4.2.0")) {
68+
this.password = password.replaceAll(";", "\\\\;");
69+
// } else {
70+
// this.password = password;
71+
// }
7272

7373
setApiNumber(AUTH_REQ_API_NBR);
7474
this.timeToLive = timeToLive;

jargon-data-utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.irods</groupId>
55
<artifactId>jargon</artifactId>
6-
<version>4.2.0.1-SNAPSHOT</version>
6+
<version>4.2.2.0-RELEASE</version>
77
</parent>
88
<groupId>org.irods.jargon</groupId>
99
<artifactId>jargon-data-utils</artifactId>

jargon-httpstream/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>jargon</artifactId>
66
<groupId>org.irods</groupId>
7-
<version>4.2.0.1-SNAPSHOT</version>
7+
<version>4.2.2.0-RELEASE</version>
88
</parent>
99
<groupId>org.irods.jargon</groupId>
1010
<artifactId>jargon-httpstream</artifactId>

jargon-pool/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.irods</groupId>
77
<artifactId>jargon</artifactId>
8-
<version>4.2.0.1-SNAPSHOT</version>
8+
<version>4.2.2.0-RELEASE</version>
99
</parent>
1010
<groupId>org.irods.jargon</groupId>
1111
<artifactId>jargon-pool</artifactId>

jargon-ruleservice/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.irods</groupId>
55
<artifactId>jargon</artifactId>
6-
<version>4.2.0.1-SNAPSHOT</version>
6+
<version>4.2.2.0-RELEASE</version>
77
</parent>
88
<groupId>org.irods.jargon</groupId>
99
<artifactId>jargon-ruleservice</artifactId>

jargon-ticket/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.irods</groupId>
55
<artifactId>jargon</artifactId>
6-
<version>4.2.0.1-SNAPSHOT</version>
6+
<version>4.2.2.0-RELEASE</version>
77
</parent>
88
<groupId>org.irods.jargon</groupId>
99
<artifactId>jargon-ticket</artifactId>

jargon-user-profile/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>jargon</artifactId>
66
<groupId>org.irods</groupId>
7-
<version>4.2.0.1-SNAPSHOT</version>
7+
<version>4.2.2.0-RELEASE</version>
88
</parent>
99
<groupId>org.irods.jargon</groupId>
1010
<artifactId>jargon-user-profile</artifactId>

jargon-user-tagging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.irods</groupId>
44
<artifactId>jargon</artifactId>
5-
<version>4.2.0.1-SNAPSHOT</version>
5+
<version>4.2.2.0-RELEASE</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<groupId>org.irods.jargon</groupId>

0 commit comments

Comments
 (0)