Skip to content

Commit

Permalink
build: Update to 3.4.0 for next release
Browse files Browse the repository at this point in the history
Signed-off-by: BJ Hargrave <bj@bjhargrave.com>
  • Loading branch information
bjhargrave committed Sep 22, 2016
1 parent 2bcb8e6 commit 6204205
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
6 changes: 5 additions & 1 deletion biz.aQute.bndlib/src/aQute/bnd/osgi/About.java
Expand Up @@ -44,7 +44,10 @@ public class About {
public static Version _3_1 = new Version(3, 1, 0);
public static Version _3_2 = new Version(3, 2, 0);
public static Version _3_3 = new Version(3, 3, 0);
public static Version CURRENT = _3_3;
public static Version _3_4 = new Version(3, 4, 0);
public static Version CURRENT = _3_4;

public static String[] CHANGES_3_4 = {};

public static String[] CHANGES_3_3 = {};

Expand Down Expand Up @@ -223,6 +226,7 @@ public class About {
public static Map<Version,String[]> CHANGES = new TreeMap<Version,String[]>(Collections.reverseOrder());

static {
CHANGES.put(_3_4, CHANGES_3_4);
CHANGES.put(_3_3, CHANGES_3_3);
CHANGES.put(_3_2, CHANGES_3_2);
CHANGES.put(_3_1, CHANGES_3_1);
Expand Down
2 changes: 1 addition & 1 deletion biz.aQute.bndlib/src/aQute/bnd/osgi/packageinfo
@@ -1 +1 @@
version 2.8.0
version 2.9.0
4 changes: 2 additions & 2 deletions cnf/build.bnd
Expand Up @@ -19,9 +19,9 @@ copyright: Copyright (c) aQute SARL (2000, ${tstamp;yyyy}) and othe
copyright.html: Copyright &copy; aQute SARL (2000, ${tstamp;yyyy}) and others. All Rights Reserved.

# This is the version to baseline this build against.
baseline.version: 3.2.0
baseline.version: 3.3.0
# biz.aQute.bndlib:aQute.bnd.osgi.About.CURRENT needs to be kept in sync with the base.version.
base.version: 3.3.0
base.version: 3.4.0
# Uncomment the following line to build the non-snapshot version.
#-snapshot:
Bundle-Version: ${base.version}.${tstamp}-SNAPSHOT
Expand Down
4 changes: 2 additions & 2 deletions maven/bnd-baseline-maven-plugin/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-plugin-parent</artifactId>
<version>3.3.0-SNAPSHOT</version>
<version>3.4.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down Expand Up @@ -66,4 +66,4 @@
</plugins>
</build>

</project>
</project>
2 changes: 1 addition & 1 deletion maven/bnd-export-maven-plugin/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-plugin-parent</artifactId>
<version>3.3.0-SNAPSHOT</version>
<version>3.4.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>bnd-export-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven/bnd-indexer-maven-plugin/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-plugin-parent</artifactId>
<version>3.3.0-SNAPSHOT</version>
<version>3.4.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion maven/bnd-maven-plugin/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-plugin-parent</artifactId>
<version>3.3.0-SNAPSHOT</version>
<version>3.4.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion maven/pom.xml
Expand Up @@ -8,7 +8,7 @@
<description>Parent POM for the bnd maven plugins.</description>
<name>${project.groupId}:${project.artifactId}</name>
<packaging>pom</packaging>
<version>3.3.0-SNAPSHOT</version>
<version>3.4.0-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 6204205

Please sign in to comment.