Skip to content

Commit 5ac4971

Browse files
Prepare version 1.13.0 (#59)
* use latest version of exp design lib (#54) * only allow unique header columns for metadata update (#53) Co-authored-by: Steffengreiner <Steffen.Greiner@gmx.de> * Add message if space already exists, re-enable button (#55) * remove parent pom (#49) * v1.6.0 of utils lib * fix workflows Co-authored-by: Steffengreiner <Steffen.Greiner@gmx.de> Co-authored-by: Tobias Koch <KochTobi@users.noreply.github.com> Co-authored-by: Sven F <sven.fillinger@qbic.uni-tuebingen.de> * add description for imaging support option (#57) * improve UI messages (#56)
1 parent a171fad commit 5ac4971

File tree

17 files changed

+266
-134
lines changed

17 files changed

+266
-134
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/general_question.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/build-package.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build Maven Package
33
on:
44
push:
55
branches:
6-
- '*'
6+
- '**'
77
pull_request:
88
# The branches below must be a subset of the branches above
99
branches: [ main, master ]
@@ -18,14 +18,12 @@ jobs:
1818
uses: actions/setup-java@v1
1919
with:
2020
java-version: 1.8
21-
2221
- name: Load local Maven repository cache
2322
uses: actions/cache@v2
2423
with:
2524
path: ~/.m2/repository
2625
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2726
restore-keys: |
2827
${{ runner.os }}-maven-
29-
3028
- name: Run mvn package
3129
run: mvn -B package --file pom.xml

.github/workflows/codeql-analysis.yml

Lines changed: 40 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ master, development, patch/*, release/*, hotfix/* ]
16+
branches: [ main, master, development, release/*, hotfix/* ]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ master ]
19+
branches: [ main, master ]
2020
schedule:
2121
- cron: '21 1 * * 4'
2222

2323
jobs:
2424
analyze:
25-
name: analyze
2625
runs-on: ubuntu-latest
2726
permissions:
2827
actions: read
@@ -37,47 +36,47 @@ jobs:
3736
# Learn more about CodeQL language support at https://git.io/codeql-language-support
3837

3938
steps:
40-
- name: Checkout repository
41-
uses: actions/checkout@v2
42-
- name: Set up JDK 1.8
43-
uses: actions/setup-java@v1
44-
with:
45-
java-version: 1.8
46-
settings-path: ${{ github.workspace }}
39+
- name: Checkout repository
40+
uses: actions/checkout@v2
41+
- name: Set up JDK 1.8
42+
uses: actions/setup-java@v1
43+
with:
44+
java-version: 1.8
45+
settings-path: ${{ github.workspace }}
4746

48-
- name: Load local Maven repository cache
49-
uses: actions/cache@v2
50-
with:
51-
path: ~/.m2/repository
52-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
53-
restore-keys: |
54-
${{ runner.os }}-maven-
55-
56-
# Initializes the CodeQL tools for scanning.
57-
- name: Initialize CodeQL
58-
uses: github/codeql-action/init@v1
59-
with:
60-
languages: ${{ matrix.language }}
61-
# If you wish to specify custom queries, you can do so here or in a config file.
62-
# By default, queries listed here will override any specified in a config file.
63-
# Prefix the list here with "+" to use these queries and those in the config file.
64-
# queries: ./path/to/local/query, your-org/your-repo/queries@main
47+
- name: Load local Maven repository cache
48+
uses: actions/cache@v2
49+
with:
50+
path: ~/.m2/repository
51+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
52+
restore-keys: |
53+
${{ runner.os }}-maven-
6554
66-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
67-
# If this step fails, then you should remove it and run the build manually (see below)
68-
- name: Autobuild
69-
uses: github/codeql-action/autobuild@v1
55+
# Initializes the CodeQL tools for scanning.
56+
- name: Initialize CodeQL
57+
uses: github/codeql-action/init@v1
58+
with:
59+
languages: ${{ matrix.language }}
60+
# If you wish to specify custom queries, you can do so here or in a config file.
61+
# By default, queries listed here will override any specified in a config file.
62+
# Prefix the list here with "+" to use these queries and those in the config file.
63+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
7064

71-
# ℹ️ Command-line programs to run using the OS shell.
72-
# 📚 https://git.io/JvXDl
65+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
66+
# If this step fails, then you should remove it and run the build manually (see below)
67+
- name: Autobuild
68+
uses: github/codeql-action/autobuild@v1
7369

74-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
75-
# and modify them (or add more) to build your code if your project
76-
# uses a compiled language
70+
# ℹ️ Command-line programs to run using the OS shell.
71+
# 📚 https://git.io/JvXDl
7772

78-
#- run: |
79-
# make bootstrap
80-
# make release
73+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
74+
# and modify them (or add more) to build your code if your project
75+
# uses a compiled language
8176

82-
- name: Perform CodeQL Analysis
83-
uses: github/codeql-action/analyze@v1
77+
#- run: |
78+
# make bootstrap
79+
# make release
80+
81+
- name: Perform CodeQL Analysis
82+
uses: github/codeql-action/analyze@v1

.github/workflows/nexus-publish-snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- development
1111

1212
jobs:
13-
publish_snapshots:
13+
publish_snapshot:
1414

1515
runs-on: ubuntu-latest
1616

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Run Maven Tests
33
on:
44
push:
55
branches:
6-
- '*'
6+
- '**'
77
pull_request:
88
# The branches below must be a subset of the branches above
99
branches: [ main, master ]

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ Changelog
44

55
This project adheres to `Semantic Versioning <https://semver.org/>`_.
66

7+
1.13.0-SNAPSHOT (2021-06-07)
8+
----------------------------
9+
10+
**Added**
11+
12+
**Fixed**
13+
14+
**Dependencies**
15+
16+
**Deprecated**
17+
718
1.12.6 (2022-01-04)
819
-------------------
920

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# the built documents.
5656
#
5757
# The short X.Y version.
58-
version = '1.12.2'
58+
version = '1.13.0-SNAPSHOT'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.12.2'
60+
release = '1.13.0-SNAPSHOT'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

0 commit comments

Comments
 (0)