Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
bump to v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jhdcruz committed Dec 12, 2022
1 parent 198c576 commit 6ce8106
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven

- name: Compile project
run: mvn clean compile assembly:single
- name: Compile project
run: mvn clean compile assembly:single

- name: Release
uses: softprops/action-gh-release@v0.1.13
if: startsWith(github.ref, 'refs/tags/')
with:
files: .target/*.jar
- name: Release
uses: softprops/action-gh-release@v0.1.13
if: startsWith(github.ref, 'refs/tags/')
with:
files: .target/*.jar

- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@multi-module
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@multi-module
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.pharmacy</groupId>
<artifactId>DD-Pharmacy</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/pharmacy/Views/LoginPage.form
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
<Color blue="99" green="99" red="99" type="rgb"/>
</Property>
<Property name="horizontalAlignment" type="int" value="0"/>
<Property name="text" type="java.lang.String" value="&#xa9; D&amp;D Pharmacy System v1.0.0"/>
<Property name="text" type="java.lang.String" value="&#xa9; D&amp;D Pharmacy System v1.0.1"/>
</Properties>
</Component>
</SubComponents>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/pharmacy/Views/LoginPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
jLabel4.setFont(new java.awt.Font("Liberation Sans", 0, 14)); // NOI18N
jLabel4.setForeground(new java.awt.Color(153, 153, 153));
jLabel4.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel4.setText("© D&D Pharmacy System v1.0.0");
jLabel4.setText("© D&D Pharmacy System v1.0.1");

javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
Expand Down

0 comments on commit 6ce8106

Please sign in to comment.