Skip to content

Commit 927fe47

Browse files
author
Hélios GILLES
committed
Release v4.0.0
1 parent 1b835a7 commit 927fe47

30 files changed

Lines changed: 43 additions & 31 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ Thumbs.db
1414
.tycho*
1515

1616
# JVM crash dumps
17-
hs_err*.log
17+
hs_err*.log
18+
/.project

RELEASING.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# How to release
2+
3+
Run the following commands:
4+
5+
```
6+
mvn -file org.moreunit.build/pom.xml org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=4.0.1
7+
git add .
8+
git commit --message="Release v4.0.1"
9+
git tag v4.0.1
10+
git push --tags
11+
```

org.moreunit.build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.moreunit</groupId>
66
<artifactId>moreunit</artifactId>
7-
<version>4.0.0-SNAPSHOT</version>
7+
<version>4.0.0</version>
88
<packaging>pom</packaging>
99
<modules>
1010
<module>../org.moreunit.core</module>

org.moreunit.core.test/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: MoreUnit Core Test
44
Bundle-SymbolicName: org.moreunit.core.test
5-
Bundle-Version: 4.0.0.qualifier
5+
Bundle-Version: 4.0.0
66
Bundle-RequiredExecutionEnvironment: JavaSE-21
77
Require-Bundle: org.moreunit.core,
88
org.eclipse.core.commands,

org.moreunit.core.test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<relativePath>../org.moreunit.build/pom.xml</relativePath>
88
<groupId>org.moreunit</groupId>
99
<artifactId>moreunit</artifactId>
10-
<version>4.0.0-SNAPSHOT</version>
10+
<version>4.0.0</version>
1111
</parent>
1212

1313
<artifactId>org.moreunit.core.test</artifactId>

org.moreunit.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: MoreUnit Plug-in Core
44
Bundle-SymbolicName: org.moreunit.core;singleton:=true
5-
Bundle-Version: 4.0.0.qualifier
5+
Bundle-Version: 4.0.0
66
Bundle-Activator: org.moreunit.core.MoreUnitCore
77
Bundle-Vendor: MoreUnit.org
88
Require-Bundle: org.eclipse.core.expressions,

org.moreunit.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<relativePath>../org.moreunit.build/pom.xml</relativePath>
88
<groupId>org.moreunit</groupId>
99
<artifactId>moreunit</artifactId>
10-
<version>4.0.0-SNAPSHOT</version>
10+
<version>4.0.0</version>
1111
</parent>
1212

1313
<artifactId>org.moreunit.core</artifactId>

org.moreunit.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="org.moreunit.feature"
44
label="MoreUnit For Java"
5-
version="4.0.0.qualifier"
5+
version="4.0.0"
66
provider-name="MoreUnit.org"
77
plugin="org.moreunit">
88

org.moreunit.feature/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<relativePath>../org.moreunit.build/pom.xml</relativePath>
88
<groupId>org.moreunit</groupId>
99
<artifactId>moreunit</artifactId>
10-
<version>4.0.0-SNAPSHOT</version>
10+
<version>4.0.0</version>
1111
</parent>
1212

1313
<artifactId>org.moreunit.feature</artifactId>

org.moreunit.light.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="org.moreunit.light.feature"
44
label="MoreUnit Light"
5-
version="4.0.0.qualifier"
5+
version="4.0.0"
66
provider-name="MoreUnit.org"
77
plugin="org.moreunit.core">
88

0 commit comments

Comments
 (0)