Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit af9a542

Browse files
authored
Merge pull request #53 from xdev-software/develop
Release 6.0.1
2 parents 3d34df5 + b19324d commit af9a542

File tree

4 files changed

+17
-35
lines changed

4 files changed

+17
-35
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -172,32 +172,6 @@ jobs:
172172
publish_dir: ./docs
173173
enable_jekyll: true
174174

175-
build_xdev_ide:
176-
runs-on: ubuntu-latest
177-
needs: [prepare_release]
178-
steps:
179-
- uses: actions/checkout@v2
180-
181-
- name: Init Git and pull
182-
run: |
183-
git config --global user.email "actions@github.com"
184-
git config --global user.name "GitHub Actions"
185-
git pull
186-
187-
- name: Set up JDK
188-
uses: actions/setup-java@v2
189-
with:
190-
distribution: 'temurin'
191-
java-version: '8'
192-
193-
- name: Build with Maven
194-
run: mvn -B clean verify -Pxdev-ide
195-
196-
- uses: actions/upload-artifact@v2
197-
with:
198-
name: jars-xdev-ide
199-
path: target/*.jar
200-
201175
after_release:
202176
runs-on: ubuntu-latest
203177
needs: [publish_central]

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 6.0.1
2+
* Updated xapi to ``6.0.1``
3+
* Updated jasperreports to ``6.18.1``
4+
* Updated maven plugins
5+
16
## 6.0.0
27
* Ensured build compatibility with Java 8, 11 and 17
38
* Minor code improvements, mostly for tests

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,17 @@ Mail: opensource@xdev-software.de
3030
We encourage you to read the [contribution instructions by GitHub](https://guides.github.com/activities/contributing-to-open-source/#contributing) also.
3131

3232
## Dependencies and Licenses
33-
The XDEV BIAPI is released under [GNU Lesser General Public License version 3](https://www.gnu.org/licenses/lgpl-3.0.en.html) aka LGPL 3
33+
The XDEV BIAPI is released under [GNU Lesser General Public License version 3](https://www.gnu.org/licenses/lgpl-3.0.en.html) aka LGPL 3<br/>
3434
View the [summary of all dependencies online](https://xdev-software.github.io/biapi/dependencies/)
3535

3636
## Releasing [![Build](https://img.shields.io/github/workflow/status/xdev-software/biapi/Release?label=Release)](https://github.com/xdev-software/biapi/actions/workflows/release.yml)
37-
Consider doing a [test-deployment](https://github.com/xdev-software/biapi/actions/workflows/test-deploy.yml?query=branch%3Adevelop) before actually releasing.
37+
38+
Before releasing:
39+
* Consider doing a [test-deployment](https://github.com/xdev-software/biapi/actions/workflows/test-deploy.yml?query=branch%3Adevelop) before actually releasing.
40+
* Check the [changelog](CHANGELOG.md)
3841

3942
If the ``develop`` is ready for release, create a pull request to the ``master``-Branch and merge the changes.
4043

4144
When the release is finished do the following:
4245
* Merge the auto-generated PR (with the incremented version number) back into the ``develop``
43-
* Add the release notes to the [GitHub release](https://github.com/xdev-software/biapi/releases/latest)
46+
* Link the corresponding version from the [changelog](CHANGELOG.md) to the [GitHub release](https://github.com/xdev-software/biapi/releases/latest)

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@
8686
<dependency>
8787
<groupId>com.xdev-software</groupId>
8888
<artifactId>xapi</artifactId>
89-
<version>6.0.0</version>
89+
<version>6.0.1</version>
9090
</dependency>
9191

9292
<!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports -->
9393
<dependency>
9494
<groupId>net.sf.jasperreports</groupId>
9595
<artifactId>jasperreports</artifactId>
96-
<version>6.17.0</version>
96+
<version>6.18.1</version>
9797
</dependency>
9898
</dependencies>
9999

@@ -108,7 +108,7 @@
108108
<plugin>
109109
<groupId>org.apache.maven.plugins</groupId>
110110
<artifactId>maven-deploy-plugin</artifactId>
111-
<version>3.0.0-M1</version>
111+
<version>3.0.0-M2</version>
112112
</plugin>
113113
<plugin>
114114
<groupId>org.apache.maven.plugins</groupId>
@@ -118,7 +118,7 @@
118118
<plugin>
119119
<groupId>org.apache.maven.plugins</groupId>
120120
<artifactId>maven-jar-plugin</artifactId>
121-
<version>3.2.0</version>
121+
<version>3.2.2</version>
122122
</plugin>
123123
<plugin>
124124
<groupId>org.apache.maven.plugins</groupId>
@@ -128,7 +128,7 @@
128128
<plugin>
129129
<groupId>org.apache.maven.plugins</groupId>
130130
<artifactId>maven-site-plugin</artifactId>
131-
<version>3.9.1</version>
131+
<version>3.10.0</version>
132132
</plugin>
133133

134134
<plugin>
@@ -138,7 +138,7 @@
138138

139139
<plugin>
140140
<artifactId>maven-compiler-plugin</artifactId>
141-
<version>3.8.1</version>
141+
<version>3.9.0</version>
142142
</plugin>
143143

144144
</plugins>

0 commit comments

Comments
 (0)