Skip to content

Commit a78651e

Browse files
committed
Bump version to 1.10.0-SNAPSHOT
1 parent 372f2f4 commit a78651e

File tree

6 files changed

+9
-84
lines changed

6 files changed

+9
-84
lines changed

pom.xml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.obolibrary.robot</groupId>
77
<artifactId>robot</artifactId>
8-
<version>1.9.9</version>
8+
<version>1.10.0-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010

1111
<name>robot</name>
@@ -35,17 +35,6 @@
3535
</developer>
3636
</developers>
3737

38-
<distributionManagement>
39-
<snapshotRepository>
40-
<id>ossrh</id>
41-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
42-
</snapshotRepository>
43-
<repository>
44-
<id>ossrh</id>
45-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
46-
</repository>
47-
</distributionManagement>
48-
4938
<scm>
5039
<connection>scm:git:git://github.com/ontodev/robot.git</connection>
5140
<developerConnection>scm:git:ssh://github.com:ontodev/robot.git</developerConnection>
@@ -59,7 +48,6 @@
5948
<properties>
6049
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6150
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
62-
<maven-deploy-plugin-version>2.8.2</maven-deploy-plugin-version>
6351
<maven.compiler.source>1.8</maven.compiler.source>
6452
<maven.compiler.target>1.8</maven.compiler.target>
6553
<dependency.locations.enabled>false</dependency.locations.enabled>
@@ -126,7 +114,7 @@
126114
<plugin>
127115
<groupId>org.apache.maven.plugins</groupId>
128116
<artifactId>maven-javadoc-plugin</artifactId>
129-
<version>3.12.0</version>
117+
<version>3.2.0</version>
130118
<executions>
131119
<execution>
132120
<id>attach-javadocs</id>

robot-command/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.obolibrary.robot</groupId>
88
<artifactId>robot</artifactId>
9-
<version>1.9.9</version>
9+
<version>1.10.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>robot-command</artifactId>
1212
<name>robot-command</name>

robot-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.obolibrary.robot</groupId>
88
<artifactId>robot</artifactId>
9-
<version>1.9.9</version>
9+
<version>1.10.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>robot-core</artifactId>
1212
<name>robot-core</name>
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>${project.groupId}</groupId>
4444
<artifactId>${project.artifactId}</artifactId>
45-
<version>1.9.8</version> <!-- japicmp target -->
45+
<version>1.9.9</version> <!-- japicmp target -->
4646
<type>jar</type>
4747
</dependency>
4848
</oldVersion>

robot-maven-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
<parent>
99
<groupId>org.obolibrary.robot</groupId>
1010
<artifactId>robot</artifactId>
11-
<version>1.9.9</version>
11+
<version>1.10.0-SNAPSHOT</version>
1212
</parent>
1313

1414
<artifactId>robot-maven-plugin</artifactId>
15-
<version>1.9.9</version>
15+
<version>1.10.0-SNAPSHOT</version>
1616
<packaging>maven-plugin</packaging>
1717
<name>robot-maven-plugin</name>
1818

@@ -55,7 +55,7 @@
5555
<plugin>
5656
<groupId>org.obolibrary.robot</groupId>
5757
<artifactId>robot-maven-plugin</artifactId>
58-
<version>1.9.9</version>
58+
<version>1.10.0-SNAPSHOT</version>
5959
</plugin>
6060
</plugins>
6161
</build>

robot-mock-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.obolibrary.robot</groupId>
88
<artifactId>robot</artifactId>
9-
<version>1.9.9</version>
9+
<version>1.10.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>robot-mock-plugin</artifactId>
1212
<name>robot-mock-plugin</name>

util/release.sh

Lines changed: 0 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -67,69 +67,6 @@ trap 'print_step' INT TERM EXIT
6767

6868
### Steps
6969

70-
echo "This script will walk you through making a ROBOT release ${VERSION}"
71-
confirm "Ready?"
72-
73-
step "Update git"
74-
git fetch
75-
git status | head -n2
76-
confirm "Correct branch and up to date?"
77-
78-
step "Check GitHub Actions"
79-
curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/ontodev/robot/actions/runs \
80-
| jq -e '[.workflow_runs[]|select(.event=="push")][0].conclusion|test("success")'
81-
82-
step "Update OBO context (curie map)"
83-
( cd robot-maven-plugin && mvn install )
84-
mvn robot:UpdateContext -N
85-
86-
step "Set the the version number for this release"
87-
mvn versions:set -DnewVersion="${VERSION}"
88-
89-
step "Check the JavaDocs"
90-
mvn clean site
91-
92-
step "Check the test suite"
93-
mvn clean verify
94-
95-
step "Updating CHANGELOG.md"
96-
< CHANGELOG.md \
97-
sed "/^## \[Unreleased\]/a## [${VERSION}] - $(date '+%Y-%m-%d')" \
98-
| sed "/^## \[Unreleased\]/G " \
99-
| sed "s/^\[Unreleased\]: /[${VERSION}]: /" \
100-
| sed "s/..HEAD$/..v${VERSION}/" \
101-
| sed "/\[${VERSION}]: /i[Unreleased]: https://github.com/ontodev/robot/compare/v${VERSION}...HEAD" \
102-
> CHANGELOG.new.md
103-
mv CHANGELOG.new.md CHANGELOG.md
104-
105-
step "Manually check CHANGELOG.md and obo_context.jsonld"
106-
confirm "CHANGELOG.md and obo_context.jsonld good?"
107-
108-
echo "Everything looks good!"
109-
110-
# This extra step is required to avoid issue https://github.com/ontodev/robot/issues/411:
111-
# Using the robot.jar downloaded from the GitHub release
112-
# should give you the correct OWL API version in RDFXML file footers
113-
# (NOT the ROBOT version), e.g.
114-
# "Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi"
115-
step "Make a copy of robot.jar for upload to GitHub"
116-
cp bin/robot.jar robot.jar
117-
118-
step "Review changes for release"
119-
git diff
120-
confirm "Commit and push?"
121-
git commit --all --message "Bump version to ${VERSION}"
122-
git push
123-
124-
### Maven Central Release
125-
#
126-
# - documentation at <https://central.sonatype.org/publish/publish-portal-maven/>
127-
# - make sure your have a username and password in `~/.m2/settings.xml`
128-
# using the Access User Token from your profile on <https://central.sonatype.com/usertoken>
129-
# - enter your GPG password, maybe with a dialog window
130-
step "Release to Maven Central"
131-
mvn clean deploy -P release
132-
13370
step "Create draft GitHub release"
13471
< CHANGELOG.md \
13572
sed -n "/^## \[${VERSION}\]/,/^## /p" \

0 commit comments

Comments
 (0)