Skip to content

Commit 2865fe1

Browse files
peterkirchrisrueger
authored andcommitted
build: Start 7.3.0 stream
Signed-off-by: Christoph Rueger <chrisrueger@gmail.com> Signed-off-by: Peter Kirschner <peter@klib.io>
1 parent 4354a14 commit 2865fe1

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__versiondefaults__ 7.3.0
2+
-launcher manage = all
3+
-jpms-multi-release true

biz.aQute.bndlib/src/aQute/bnd/osgi/About.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,12 @@ public class About {
7474
public static final Version _7_0 = new Version(7, 0, 0);
7575
public static final Version _7_1 = new Version(7, 1, 0);
7676
public static final Version _7_2 = new Version(7, 2, 0);
77-
public static final Version CURRENT = _7_2;
77+
public static final Version _7_3 = new Version(7, 3, 0);
78+
public static final Version CURRENT = _7_3;
7879

80+
public static final String[] CHANGES_7_3 = {
81+
"See https://github.com/bndtools/bnd/wiki/Changes-in-7.3.0 for a list of changes."
82+
};
7983
public static final String[] CHANGES_7_2 = {
8084
"See https://github.com/bndtools/bnd/wiki/Changes-in-7.2.0 for a list of changes."
8185
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Version("7.5.0")
1+
@Version("7.6.0")
22
package aQute.bnd.osgi;
33

44
import org.osgi.annotation.versioning.Version;

cnf/build.bnd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Git-SHA: ${system-allow-fail;git rev-list -1 --no-abbrev-commit H
1919
# This is the version to baseline this build against. See cnf/ext/baseline.mvn.
2020
baseline.version: 7.1.0
2121
# biz.aQute.bndlib:aQute.bnd.osgi.About.CURRENT needs to be kept in sync with the base.version.
22-
base.version: 7.2.0
22+
base.version: 7.3.0
2323
Bundle-Version: ${base.version}.${tstamp}-SNAPSHOT
2424
# Don't baseline Bundle-Version
2525
-diffignore: Bundle-Version

gradle-plugins/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To make the Bnd Builder Gradle Plugin available to your build, use the following
3333
```groovy
3434
pluginManagement {
3535
plugins {
36-
id "biz.aQute.bnd.builder" version "7.2.0"
36+
id "biz.aQute.bnd.builder" version "7.3.0"
3737
}
3838
}
3939
```
@@ -650,7 +650,7 @@ The main approach is to edit `settings.gradle` as follows:
650650

651651
```groovy
652652
plugins {
653-
id "biz.aQute.bnd.workspace" version "7.2.0"
653+
id "biz.aQute.bnd.workspace" version "7.3.0"
654654
}
655655
```
656656
The Gradle marker plugins for the Bnd Gradle plugins are also in Maven Central.
@@ -673,7 +673,7 @@ The second approach, for when you already have a `settings.gradle` file which in
673673

674674
```groovy
675675
plugins {
676-
id "biz.aQute.bnd.workspace" version "7.2.0"
676+
id "biz.aQute.bnd.workspace" version "7.3.0"
677677
}
678678
```
679679

gradle-plugins/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ org.gradle.jvmargs=-Xms1024m -Xmx2048m
44
systemProp.org.gradle.internal.publish.checksums.insecure=true
55

66
bnd_group: biz.aQute.bnd
7-
bnd_version: 7.2.0-SNAPSHOT
7+
bnd_version: 7.3.0-SNAPSHOT
88
bnd_distrepo: ../dist/bundles

maven-plugins/bnd-plugin-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<version>${revision}</version>
1313

1414
<properties>
15-
<revision>7.2.0-SNAPSHOT</revision>
15+
<revision>7.3.0-SNAPSHOT</revision>
1616
<project.build.outputTimestamp>1980-02-01T00:00:00Z</project.build.outputTimestamp>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

0 commit comments

Comments
 (0)