Skip to content

Commit

Permalink
Prepare for release 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Rayco Araña committed Nov 28, 2023
1 parent efafc26 commit 620f36e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 3 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: release

on:
workflow_dispatch:

jobs:
build:
name: Build
runs-on: macos-latest
steps:
- uses: actions/checkout@v4

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

# TODO - name: Remove SNAPSHOT and prepare for release

- name: Build with Gradle
run: ./gradlew assembleRelease uploadArchives
env:
ORG_GRADLE_PROJECT_NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.GPG_SIGNATURE_KEY }}
ORG_GRADLE_PROJECT_SIGNING_PASSWORD: ${{ secrets.GPG_SIGNATURE_PASSWORD }}

# TODO - name: Create GH Release and Tag

# TODO - name: Update version to next minor SNAPSHOT
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ Based on
Changelog
----------

**v2.1.5**
* Fix layout when error text is bigger than the widget and is set after initial layout. Thanks to @jeslat

**v2.1.4**
* Fix NPE in pre-M when dealing with null error message. Thanks to @gmerinojimenez

Expand Down Expand Up @@ -115,7 +118,7 @@ For Gradle

Add dependency
```java
compile 'com.raycoarana.codeinputview:codeinputview:2.1.1'
compile 'com.raycoarana.codeinputview:codeinputview:2.1.5'
```

License
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=2.1.5-SNAPSHOT
VERSION_NAME=2.1.5
VERSION_CODE=20
GROUP=com.raycoarana.codeinputview

Expand All @@ -30,5 +30,5 @@ POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=raycoarana
POM_DEVELOPER_NAME=Rayco Araña
POM_DEVELOPER_NAME=Rayco Araña
POM_DEVELOPER_EMAIL=me@raycoarana.com

0 comments on commit 620f36e

Please sign in to comment.