Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.3.0 🎉 #86

Merged
merged 25 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
35f13e9
GH Actions(deps): Bump actions/cache from 2 to 3
dependabot[bot] Aug 18, 2023
ff8a7b2
GH Actions(deps): Bump actions/checkout from 3 to 4
dependabot[bot] Sep 4, 2023
32b2dc7
GH Actions(deps): Bump actions/checkout from 3 to 4 (#76)
dependabot[bot] Sep 4, 2023
28dd22f
GH Actions(deps): Bump actions/cache from 2 to 3 (#71)
dependabot[bot] Sep 5, 2023
9ba5d0a
GH Actions(deps): Bump actions/setup-java from 3 to 4
dependabot[bot] Nov 30, 2023
a8e03e5
Maven(deps-dev): Bump junit:junit from 4.13.1 to 4.13.2
dependabot[bot] Dec 5, 2023
6b6be1a
Maven(deps-dev): Bump junit:junit from 4.13.1 to 4.13.2 (#69)
dependabot[bot] Dec 5, 2023
35b5ecb
chore(ci): Fix release-drafter error
mitsuki31 Dec 5, 2023
28e4521
chore(ci): Some refactor to several workflows
mitsuki31 Dec 5, 2023
c4da97a
Maven(deps): Bump org.apache.maven.plugins:maven-surefire-plugin
dependabot[bot] Dec 5, 2023
9f324db
Maven(deps): Bump org.apache.maven.plugins:maven-surefire-plugin from…
dependabot[bot] Dec 5, 2023
e7b2435
Maven(deps): Bump org.apache.maven.plugins:maven-resources-plugin
dependabot[bot] Dec 5, 2023
4b48209
Maven(deps): Bump org.apache.maven.plugins:maven-javadoc-plugin
dependabot[bot] Dec 5, 2023
0b66d92
Maven(deps): Bump org.apache.maven.plugins:maven-javadoc-plugin from …
dependabot[bot] Dec 5, 2023
b9cf5c8
Maven(deps): Bump org.apache.maven.plugins:maven-compiler-plugin
dependabot[bot] Dec 5, 2023
980c823
Maven(deps): Bump org.apache.maven.plugins:maven-compiler-plugin from…
dependabot[bot] Dec 5, 2023
1c4251b
Maven(deps): Bump org.apache.maven.plugins:maven-resources-plugin fro…
dependabot[bot] Dec 5, 2023
e9473f7
Maven(deps): Bump org.apache.maven.plugins:maven-jar-plugin
dependabot[bot] Dec 5, 2023
5b4433c
Maven(deps): Bump org.apache.maven.plugins:maven-jar-plugin from 3.2.…
dependabot[bot] Dec 5, 2023
d4ec4fd
GH Actions(deps): Bump crazy-max/ghaction-virustotal from 3 to 4
dependabot[bot] Dec 5, 2023
25d7fe3
GH Actions(deps): Bump crazy-max/ghaction-virustotal from 3 to 4 (#78)
dependabot[bot] Dec 5, 2023
4abb90e
GitHub Actions updated(deps): Bump actions/setup-python from 3 to 4
dependabot[bot] Dec 5, 2023
d63e839
GitHub Actions updated(deps): Bump actions/setup-python from 3 to 4 (…
dependabot[bot] Dec 5, 2023
f5d5f48
GH Actions(deps): Bump actions/setup-java from 3 to 4 (#83)
dependabot[bot] Dec 5, 2023
a8124b0
Bump the version to 1.3.0
mitsuki31 Dec 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ updates:
- package-ecosystem: "pip"
directory: "/" # Search for "requirements.txt" on root directory
schedule:
interval: "daily"
interval: "weekly"
commit-message:
prefix: "pip"
include: "scope"
Expand All @@ -28,7 +28,7 @@ updates:
prefix: "GH Actions"
include: "scope"
labels:
- "dependencies"
- "chore"
assignees:
- "mitsuki31"

Expand Down
5 changes: 4 additions & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ autolabeler:
branch:
- '/feature\/.+/'
- '/features\/.+/'
- label: 'chore'
files:
- '.github/**/*'

# Changes on Java code
- label: 'lang:java'
Expand Down Expand Up @@ -95,7 +98,7 @@ template: |
🛡️ [VirusTotal][virustotal] Scan Detections:

- jmatrix-$RESOLVED_VERSION.jar
- jmatrix-$RESOLVED_VERSION_with_sources.jar
- jmatrix-$RESOLVED_VERSION-sources.jar


<!-- LINKS -->
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Setup the Java Virtual Machine
- name: Setup JVM / ${{ matrix.os }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: ${{ env.java-dist }}
java-version: ${{ env.java-version }}
Expand All @@ -74,7 +74,7 @@ jobs:
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

- name: Caching Dependencies / ${{ matrix.os }}
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:
steps:
# Checkout the repo
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Setup Python
- name: Set up Python ${{ matrix.python-version }}
id: setup-py
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
steps:
# Checkout repository
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Caching Maven deps
- name: Cache Maven dependencies
id: cache-maven
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand All @@ -53,7 +53,7 @@ jobs:

# Setup Java
- name: Setup Java / ${{ matrix.os }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{ env.java-ver }}
distribution: ${{ env.java-dist }}
Expand Down Expand Up @@ -108,12 +108,12 @@ jobs:
steps:
# Checkout
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Setup Python
- name: Setup Python ${{ matrix.py-ver }}
id: setup-py
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py-ver }}
architecture: ${{ env.arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/virus-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: VirusTotal Scan
uses: crazy-max/ghaction-virustotal@v3
uses: crazy-max/ghaction-virustotal@v4
with:
vt_api_key: ${{ secrets.VT_API_KEY }}
# update_release_body: true
Expand Down
2 changes: 1 addition & 1 deletion META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Built-By: Ryuu Mitsuki
License-File: LICENSE
Main-Class: com.mitsuki.jmatrix.Main
Program-Name: JMatrix
Program-Version: v1.2.2
Program-Version: v1.3.0
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Recommended Make version: 4.4.*+

# WARNING! Don't change this version manually, it's autogenerated!
VERSION := 1.2.2
VERSION := 1.3.0
PREFIX := [jmatrix]

CC := javac
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<properties>
<author.name>Ryuu Mitsuki</author.name>
<package.name>JMatrix</package.name>
<package.version.core>1.2.2</package.version.core>
<package.version.core>1.3.0</package.version.core>
<package.mainClass>com.mitsuki.jmatrix.Main</package.mainClass>
<package.releaseType>stable</package.releaseType>
<package.betaNum>0</package.betaNum>
Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -33,7 +33,7 @@
<groupId>com.mitsuki</groupId>
<artifactId>jmatrix</artifactId>
<packaging>jar</packaging>
<version>1.2.2</version>
<version>1.3.0</version>

<profiles>
<!--
Expand Down Expand Up @@ -66,7 +66,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.11.0</version>
<configuration>
<source>11</source>
<target>11</target>
Expand All @@ -77,7 +77,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.0</version>
<version>3.6.3</version>
<configuration>
<additionalparam>-encoding UTF-8</additionalparam>
</configuration>
Expand All @@ -87,7 +87,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.1</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
Expand Down Expand Up @@ -117,7 +117,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<configuration>
<archive>
<manifest>
Expand All @@ -139,7 +139,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.2</version>
</plugin>
</plugins>
</build>
Expand Down
Loading