Skip to content

Commit eebffc7

Browse files
committed
Release 1.0.5
1 parent 9483c27 commit eebffc7

File tree

33 files changed

+96
-96
lines changed

33 files changed

+96
-96
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ authors:
55
given-names: Egon
66
orcid: https://orcid.org/0000-0001-7542-0286
77
title: Bacting
8-
version: 1.0.4
9-
date-released: 2025-01-19
8+
version: 1.0.5
9+
date-released: 2025-03-30
1010
doi: 10.5281/zenodo.2638709
1111
url: "https://github.com/egonw/bacting"
1212
preferred-citation:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ If these requirements are fulfilled then the following commands to the job:
4747

4848
```shell
4949
export MAVEN_OPTS="--add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED"
50-
mvn versions:set -DnewVersion=1.0.4
50+
mvn versions:set -DnewVersion=1.0.5
5151
git commit -m "New release" -a
5252
mvn deploy -P release
5353
```
5454

5555
### Making snapshots
5656

5757
```shell
58-
mvn versions:set -DnewVersion=1.0.5-SNAPSHOT
58+
mvn versions:set -DnewVersion=1.0.6-SNAPSHOT
5959
mvn deploy
6060
```
6161

@@ -83,7 +83,7 @@ itself), and then converts a [SMILES](https://en.wikipedia.org/wiki/Simplified_m
8383
string to a Bioclipse `IMolecule` data object:
8484

8585
```groovy
86-
@Grab(group='io.github.egonw.bacting', module='managers-cdk', version='1.0.3')
86+
@Grab(group='io.github.egonw.bacting', module='managers-cdk', version='1.0.5')
8787
8888
workspaceRoot = "."
8989
def cdk = new net.bioclipse.managers.CDKManager(workspaceRoot);
@@ -117,7 +117,7 @@ The code example looks like:
117117

118118
```python
119119
from scyjava import config, jimport
120-
config.add_endpoints('io.github.egonw.bacting:managers-cdk:1.0.3')
120+
config.add_endpoints('io.github.egonw.bacting:managers-cdk:1.0.5')
121121

122122
workspaceRoot = "."
123123
cdkClass = jimport("net.bioclipse.managers.CDKManager")

bacting-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>bacting</artifactId>
66
<groupId>io.github.egonw.bacting</groupId>
7-
<version>1.0.5-SNAPSHOT</version>
7+
<version>1.0.5</version>
88
</parent>
99

1010
<artifactId>bacting-core</artifactId>

bundle/pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>bacting</artifactId>
77
<groupId>io.github.egonw.bacting</groupId>
8-
<version>1.0.5-SNAPSHOT</version>
8+
<version>1.0.5</version>
99
</parent>
1010

1111
<artifactId>bacting-bundle</artifactId>
@@ -15,77 +15,77 @@
1515
<dependency>
1616
<groupId>io.github.egonw.bacting</groupId>
1717
<artifactId>bacting-core</artifactId>
18-
<version>1.0.5-SNAPSHOT</version>
18+
<version>1.0.5</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.github.egonw.bacting</groupId>
2222
<artifactId>managers-ui</artifactId>
23-
<version>1.0.5-SNAPSHOT</version>
23+
<version>1.0.5</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>io.github.egonw.bacting</groupId>
2727
<artifactId>managers-rdf</artifactId>
28-
<version>1.0.5-SNAPSHOT</version>
28+
<version>1.0.5</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>io.github.egonw.bacting</groupId>
3232
<artifactId>managers-xml</artifactId>
33-
<version>1.0.5-SNAPSHOT</version>
33+
<version>1.0.5</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>io.github.egonw.bacting</groupId>
3737
<artifactId>net.bioclipse.managers.wikidata</artifactId>
38-
<version>1.0.5-SNAPSHOT</version>
38+
<version>1.0.5</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>io.github.egonw.bacting</groupId>
4242
<artifactId>managers-bridgedb</artifactId>
43-
<version>1.0.5-SNAPSHOT</version>
43+
<version>1.0.5</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>io.github.egonw.bacting</groupId>
4747
<artifactId>managers-biojava</artifactId>
48-
<version>1.0.5-SNAPSHOT</version>
48+
<version>1.0.5</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>io.github.egonw.bacting</groupId>
5252
<artifactId>managers-cdk</artifactId>
53-
<version>1.0.5-SNAPSHOT</version>
53+
<version>1.0.5</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>io.github.egonw.bacting</groupId>
5757
<artifactId>managers-cdkdebug</artifactId>
58-
<version>1.0.5-SNAPSHOT</version>
58+
<version>1.0.5</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>io.github.egonw.bacting</groupId>
6262
<artifactId>managers-chemspider</artifactId>
63-
<version>1.0.5-SNAPSHOT</version>
63+
<version>1.0.5</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>io.github.egonw.bacting</groupId>
6767
<artifactId>managers-inchi</artifactId>
68-
<version>1.0.5-SNAPSHOT</version>
68+
<version>1.0.5</version>
6969
</dependency>
7070
<dependency>
7171
<groupId>io.github.egonw.bacting</groupId>
7272
<artifactId>managers-opsin</artifactId>
73-
<version>1.0.5-SNAPSHOT</version>
73+
<version>1.0.5</version>
7474
</dependency>
7575
<dependency>
7676
<groupId>io.github.egonw.bacting</groupId>
7777
<artifactId>managers-oscar</artifactId>
78-
<version>1.0.5-SNAPSHOT</version>
78+
<version>1.0.5</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>io.github.egonw.bacting</groupId>
8282
<artifactId>managers-pubchem</artifactId>
83-
<version>1.0.5-SNAPSHOT</version>
83+
<version>1.0.5</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>io.github.egonw.bacting</groupId>
8787
<artifactId>managers-excel</artifactId>
88-
<version>1.0.5-SNAPSHOT</version>
88+
<version>1.0.5</version>
8989
</dependency>
9090
</dependencies>
9191

managers-bioinfo/net.bioclipse.managers.biojava/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>managers-bioinfo</artifactId>
66
<groupId>io.github.egonw.bacting</groupId>
7-
<version>1.0.5-SNAPSHOT</version>
7+
<version>1.0.5</version>
88
</parent>
99

1010
<artifactId>managers-biojava</artifactId>
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>io.github.egonw.bacting</groupId>
3636
<artifactId>bacting-core</artifactId>
37-
<version>1.0.5-SNAPSHOT</version>
37+
<version>1.0.5</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>org.junit.jupiter</groupId>

managers-bioinfo/net.bioclipse.managers.bridgedb/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>managers-bioinfo</artifactId>
66
<groupId>io.github.egonw.bacting</groupId>
7-
<version>1.0.5-SNAPSHOT</version>
7+
<version>1.0.5</version>
88
</parent>
99

1010
<artifactId>managers-bridgedb</artifactId>
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>io.github.egonw.bacting</groupId>
4141
<artifactId>bacting-core</artifactId>
42-
<version>1.0.5-SNAPSHOT</version>
42+
<version>1.0.5</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>org.bridgedb</groupId>
@@ -97,7 +97,7 @@
9797
<dependency>
9898
<groupId>io.github.egonw.bacting</groupId>
9999
<artifactId>managers-ui</artifactId>
100-
<version>1.0.5-SNAPSHOT</version>
100+
<version>1.0.5</version>
101101
<scope>test</scope>
102102
</dependency>
103103
</dependencies>

managers-bioinfo/net.bioclipse.managers.libgpml/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>managers-bioinfo</artifactId>
66
<groupId>io.github.egonw.bacting</groupId>
7-
<version>1.0.5-SNAPSHOT</version>
7+
<version>1.0.5</version>
88
</parent>
99

1010
<artifactId>managers-libgpml</artifactId>
@@ -34,13 +34,13 @@
3434
<dependency>
3535
<groupId>io.github.egonw.bacting</groupId>
3636
<artifactId>bacting-core</artifactId>
37-
<version>1.0.5-SNAPSHOT</version>
37+
<version>1.0.5</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>io.github.egonw.bacting</groupId>
4141
<artifactId>managers-ui</artifactId>
4242
<scope>test</scope>
43-
<version>1.0.5-SNAPSHOT</version>
43+
<version>1.0.5</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>org.junit.jupiter</groupId>

managers-bioinfo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>bacting</artifactId>
77
<groupId>io.github.egonw.bacting</groupId>
8-
<version>1.0.5-SNAPSHOT</version>
8+
<version>1.0.5</version>
99
</parent>
1010

1111
<artifactId>managers-bioinfo</artifactId>

managers-cheminfo/net.bioclipse.managers.cdk/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>managers-cheminfo</artifactId>
66
<groupId>io.github.egonw.bacting</groupId>
7-
<version>1.0.5-SNAPSHOT</version>
7+
<version>1.0.5</version>
88
</parent>
99

1010
<artifactId>managers-cdk</artifactId>
@@ -34,13 +34,13 @@
3434
<dependency>
3535
<groupId>io.github.egonw.bacting</groupId>
3636
<artifactId>bacting-core</artifactId>
37-
<version>1.0.5-SNAPSHOT</version>
37+
<version>1.0.5</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>io.github.egonw.bacting</groupId>
4141
<artifactId>managers-ui</artifactId>
4242
<scope>test</scope>
43-
<version>1.0.5-SNAPSHOT</version>
43+
<version>1.0.5</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>xom</groupId>

managers-cheminfo/net.bioclipse.managers.cdkdebug/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>managers-cheminfo</artifactId>
66
<groupId>io.github.egonw.bacting</groupId>
7-
<version>1.0.5-SNAPSHOT</version>
7+
<version>1.0.5</version>
88
</parent>
99

1010
<artifactId>managers-cdkdebug</artifactId>
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>io.github.egonw.bacting</groupId>
3636
<artifactId>managers-cdk</artifactId>
37-
<version>1.0.5-SNAPSHOT</version>
37+
<version>1.0.5</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>org.openscience.cdk</groupId>

0 commit comments

Comments
 (0)