Skip to content

Commit

Permalink
Release version 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
emarc-m committed Mar 3, 2021
1 parent 305cb83 commit 4f42b98
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ Prepend the changelog with this template on every release.
-->

## [Unreleased]

## [1.4.3] - Released March 3, 2021
- Moved artifact publishing from JCenter to Maven Central (#81)
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</h1>

[![Build Status](https://travis-ci.org/KeepSafe/ReLinker.svg?branch=master)](https://travis-ci.org/KeepSafe/ReLinker) [![Release](https://img.shields.io/github/tag/KeepSafe/ReLinker.svg?label=jitpack)](https://jitpack.io/#KeepSafe/ReLinker)
[![Download](https://api.bintray.com/packages/keepsafesoftware/Android/ReLinker/images/download.svg) ](https://bintray.com/keepsafesoftware/Android/ReLinker/_latestVersion)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.getkeepsafe.relinker/relinker/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.getkeepsafe.relinker/relinker)


A robust native library loader for Android. More information can be found in our [blog post](https://medium.com/keepsafe-engineering/the-perils-of-loading-native-libraries-on-android-befa49dce2db)
Expand Down Expand Up @@ -43,15 +43,15 @@ There are a number of different bugs addressed by ReLinker; the last of these wa

## Installation

ReLinker is distributed using [jcenter](https://bintray.com/keepsafesoftware/Android/ReLinker/view).
ReLinker is distributed using [MavenCentral](https://search.maven.org/artifact/com.getkeepsafe.relinker/relinker).

```groovy
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile 'com.getkeepsafe.relinker:relinker:1.4.1'
compile 'com.getkeepsafe.relinker:relinker:1.4.3'
}
```

Expand Down
8 changes: 4 additions & 4 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,21 @@ We currently deploy to Maven Central (via Sonatype's OSS Nexus instance).
```bash
git commit -S -m "Release version X.Y.Z"
```
1. Make a *signed* tag ()check existing tags for message format):
1. Make a *signed* tag:
```bash
git tag -S -a X.Y.Z
git tag -s -a X.Y.Z
```
1. Upload binaries to Sonatype:
```bash
./gradlew publish
```
1. Go to oss.sonatype.org, log in with your credentials
1. Go to [Sonatype](https://oss.sonatype.org/), log in with your credentials
1. Click "Staging Repositories"
1. Find the "comgetkeepsafe" repo, usually at the bottom of the list
1. "Close" the repository (select it then click the "close" button up top), the text field doesn't matter so put whatever you want in it
1. Wait until that's done
1. "Release" the repository, leave the checkbox checked. Hooray, we're in Maven Central now!
1. Push all of our work to Github to make it official:
1. Push all of our work to Github to make it official. Check previous [releases](https://github.com/KeepSafe/ReLinker/releases) and edit tag release changes:
```bash
git push --tags origin master
```
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
android.useAndroidX=true

GROUP=com.getkeepsafe.relinker
VERSION_NAME=1.4.2
VERSION_NAME=1.4.3
POM_ARTIFACT_ID=relinker

POM_NAME=ReLinker
Expand Down

0 comments on commit 4f42b98

Please sign in to comment.