Skip to content

Commit 5cdf6b2

Browse files
authored
Merge pull request #21 from NeuroML/development
Changes for NeuroML v2.3.1 release
2 parents 190da0c + fb4e3c0 commit 5cdf6b2

File tree

3 files changed

+22
-16
lines changed

3 files changed

+22
-16
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,19 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
java: [ '8', '11', '16', '17', '19' ]
19+
java: [ '8', '11', '16', '17', '19', '21' ]
2020
runs-on: [ubuntu-latest, macos-latest, windows-latest ]
21+
exclude:
22+
- runs-on: macos-latest
23+
java: "8"
24+
- runs-on: macos-latest
25+
java: "16"
2126

2227
name: Test on Java ${{ matrix.Java }} on ${{ matrix.runs-on }}
2328
steps:
24-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v4
2530
- name: Set up JDK ${{ matrix.Java }}
26-
uses: actions/setup-java@v2
31+
uses: actions/setup-java@v4
2732
with:
2833
java-version: ${{ matrix.Java }}
2934
distribution: 'temurin'

.github/workflows/javadocs.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,17 @@ jobs:
99

1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313

1414
- name: Set up JDK 17
15-
uses: actions/setup-java@v1
15+
uses: actions/setup-java@v4
1616
with:
1717
java-version: 17
1818
java-package: jdk
19+
distribution: 'temurin'
1920

2021
- name: Set up Python 3.9
21-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v5
2223
with:
2324
python-version: 3.9
2425

@@ -28,10 +29,10 @@ jobs:
2829
pip install ghp-import
2930
3031
- name: Checkout org.neuroml.model.injectingplugin
31-
uses: actions/checkout@v2
32+
uses: actions/checkout@v4
3233
with:
3334
repository: NeuroML/org.neuroml.model.injectingplugin
34-
ref: development
35+
ref: ${{ github.ref }}
3536
path: org.neuroml.model.injectingplugin
3637

3738
- name: Install NeuroML deps

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.neuroml1.model</groupId>
55
<artifactId>org.neuroml1.model</artifactId>
6-
<version>1.9.1</version>
6+
<version>1.10.1</version>
77
<packaging>bundle</packaging>
88
<properties>
99
<build.version1>1.8.1</build.version1>
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>org.neuroml.model.injectingplugin</groupId>
2121
<artifactId>org.neuroml.model.injectingplugin</artifactId>
22-
<version>1.9.1</version>
22+
<version>1.10.1</version>
2323
</dependency>
2424
</dependencies>
2525
<build>
@@ -35,7 +35,7 @@
3535
&lt;br /&gt;
3636
&lt;br /&gt;
3737
</top>
38-
<bottom>Copyright NeuroML Contributors 2023</bottom>
38+
<bottom>Copyright NeuroML Contributors 2024</bottom>
3939
</configuration>
4040
</plugin>
4141
<plugin>
@@ -44,8 +44,8 @@
4444
<artifactId>maven-compiler-plugin</artifactId>
4545
<version>3.8.1</version>
4646
<configuration>
47-
<source>1.7</source>
48-
<target>1.7</target>
47+
<source>1.8</source>
48+
<target>1.8</target>
4949
</configuration>
5050
</plugin>
5151
<plugin>
@@ -89,7 +89,7 @@
8989
<plugin>
9090
<groupId>org.neuroml.model.injectingplugin</groupId>
9191
<artifactId>org.neuroml.model.injectingplugin</artifactId>
92-
<version>1.9.1</version>
92+
<version>1.10.1</version>
9393
</plugin>
9494
</plugins>
9595
</configuration>
@@ -125,7 +125,7 @@
125125
<plugin>
126126
<groupId>org.neuroml.model.injectingplugin</groupId>
127127
<artifactId>org.neuroml.model.injectingplugin</artifactId>
128-
<version>1.9.1</version>
128+
<version>1.10.1</version>
129129
</plugin>
130130
</plugins>
131131
</configuration>
@@ -162,7 +162,7 @@
162162
<plugin>
163163
<groupId>org.neuroml.model.injectingplugin</groupId>
164164
<artifactId>org.neuroml.model.injectingplugin</artifactId>
165-
<version>1.9.1</version>
165+
<version>1.10.1</version>
166166
</plugin>
167167
</plugins>
168168
</configuration>

0 commit comments

Comments
 (0)