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

fix: downgraded manually incremented version #170

Merged
merged 1 commit into from
Nov 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 4 additions & 6 deletions .github/workflows/draft_new_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,12 @@ jobs:
echo "::set-output name=new_version::$new_version"

- name: Update changelog & bump version
id: finish-release
env:
HUSKY: 0
run: |
npm i -g conventional-changelog-cli
SUMMARY=$(((npx conventional-changelog -u) 2>&1) | sed "s/*/<br> */g" | sed "s/#/ /g" | tr -d '\n' || true)
echo $SUMMARY
echo "::set-output name=commit_summary::$SUMMARY"
npm run release

npx standard-version -a

- name: Push new version in release branch & tag
run: |
Expand All @@ -82,5 +80,5 @@ jobs:
destination_branch: ${{ steps.create-release.outputs.main_branch }}
github_token: ${{ secrets.PAT }}
pr_title: "chore(release): pulling ${{ steps.create-release.outputs.branch_name }} into ${{ steps.create-release.outputs.main_branch }}"
pr_body: ":crown: *An automated PR*\n\n${{ steps.finish-release.outputs.commit_summary }}"
pr_body: ":crown: *An automated PR*"
pr_reviewer: 'itsdebs'
3 changes: 0 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,3 @@ All notable changes to this project will be documented in this file.
### Added
- Session Tracking.

## Version -1.7.1 - 2022-11-17
### Fixed
- Db downgradation issues when the SDK is downgraded from DMT versions (1.8.0-beta.1) to previous versions
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ allprojects {

```groovy

implementation 'com.rudderstack.android.sdk:core:1.7.1'
implementation 'com.rudderstack.android.sdk:core:1.x.x'
```

## Initializing ```RudderClient```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ kotlin.code.style=official
GROUP=com.rudderstack.android.sdk

VERSION_CODE=1
VERSION_NAME=1.7.1
VERSION_NAME=1.7.0

POM_NAME=Rudderstack SDK for android
POM_DESCRIPTION=Rudderstack SDK for android
Expand Down