Skip to content

Commit

Permalink
chore(release): v2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Yizack committed Mar 13, 2024
1 parent 15ebd52 commit 36ff355
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 5 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## v2.6.2

[compare changes](https://github.com/Yizack/saldometrobus-app/compare/v2.6.1...v2.6.2)

### 🩹 Fixes

- Directions submit loading ([15ebd52](https://github.com/Yizack/saldometrobus-app/commit/15ebd52))

### 🏡 Chore

- Update workflow ([d5b2cd0](https://github.com/Yizack/saldometrobus-app/commit/d5b2cd0))
- Update actions version ([976ab19](https://github.com/Yizack/saldometrobus-app/commit/976ab19))
- Update java version ([cb2cd73](https://github.com/Yizack/saldometrobus-app/commit/cb2cd73))
- Update dependencies ([377cad2](https://github.com/Yizack/saldometrobus-app/commit/377cad2))
- Add new wasm ([cba0470](https://github.com/Yizack/saldometrobus-app/commit/cba0470))

### ❤️ Contributors

- Yizack Rangel ([@Yizack](http://github.com/Yizack))

## v2.6.1

[compare changes](https://github.com/Yizack/saldometrobus-app/compare/v2.6.0...v2.6.1)
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.yizack.saldometrobus"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 2006001
versionName "2.6.1"
versionCode 2006002
versionName "2.6.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "saldometrobus-app",
"version": "2.6.1",
"version": "2.6.2",
"description": "Saldo Metrobús es un sitio de consultas de saldo y movimientos para las tarjetas de metro y metrobús de Panamá a cualquier hora del día.",
"author": "Yizack Rangel",
"license": "MIT",
Expand Down Expand Up @@ -95,4 +95,4 @@
"^~/(.*)$": "<rootDir>/$1"
}
}
}
}
2 changes: 1 addition & 1 deletion scripts/newRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (!tag) {
execSync("git add .");
execSync(`git commit -m "chore(release): v${version}"`);
console.info(`commit - "chore(release): v${version}"`);
execSync(`git tag v${version}`);
execSync(`git tag v${version} -m "chore(release): v${version}"`);
console.info(`tag - "v${version}"`);
}
else {
Expand Down

0 comments on commit 36ff355

Please sign in to comment.