Skip to content

Commit

Permalink
chore: release v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Yizack committed May 9, 2023
1 parent d7b145e commit e911c96
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 2.4.0 (2023-05-09)

* fix: android splash, app icon ([9a2832f](https://github.com/Yizack/saldometrobus-app/commit/9a2832f))
* fix: no draggable links ([d7b145e](https://github.com/Yizack/saldometrobus-app/commit/d7b145e))
* chore: .idea folder ([45fa57f](https://github.com/Yizack/saldometrobus-app/commit/45fa57f))
* chore: bump versions ([064ab90](https://github.com/Yizack/saldometrobus-app/commit/064ab90))
* chore: move cursor to the last character of name ([08491dc](https://github.com/Yizack/saldometrobus-app/commit/08491dc))
* chore: no scalable app ([4dd228f](https://github.com/Yizack/saldometrobus-app/commit/4dd228f))
* chore: trim name ([d424509](https://github.com/Yizack/saldometrobus-app/commit/d424509))



## <small>2.3.9 (2023-05-08)</small>

* style: trim cards, add transitions ([1a74fab](https://github.com/Yizack/saldometrobus-app/commit/1a74fab))
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 2003009
versionName "2.3.9"
versionCode 2004000
versionName "2.4.0"
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-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "saldometrobus-app",
"version": "2.3.9",
"version": "2.4.0",
"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
4 changes: 4 additions & 0 deletions scripts/newRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ if (!tag) {
console.info(`v${version}`);
execSync("npm run app:version");
execSync("npm run trapeze");
console.info("Trapeze: updated native files");
execSync("npm run changelog");
console.info("updated CHANGELOG.md");
execSync("git add .");
execSync(`git commit -m "chore: release v${version}"`);
console.info(`commit - "chore: release v${version}"`);
execSync(`git tag v${version}`);
console.info(`tag - "v${version}"`);
}
else {
console.info("Tag already exists");
Expand Down

0 comments on commit e911c96

Please sign in to comment.