Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
release version 0.2.1: fixes version in plugin and readme (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
josemigallas authored May 7, 2018
1 parent 905539f commit 9500263
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
9 changes: 7 additions & 2 deletions docs/releng.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,18 @@ lerna info Checking for prereleased packages...
? Select a new version (currently 0.0.0) Patch (0.0.1)

Changes:
- @aerogear/auth: 0.1.0 => 0.0.1
- @aerogear/core: 0.1.0 => 0.0.1
- @aerogear/auth: 0.0.0 => 0.0.1
- @aerogear/core: 0.0.0 => 0.0.1
- @aerogear/cordova-plugin-aerogear-metrics: 0.0.0 => 0.0.1

? Are you sure you want to publish the above changes? Yes
Repository is ready for release.
--

Use `git status` to verify that the version numbers in the correct files have been updated.

**Note**: After the version number is updated, also update it manually in `packages/metrics-cordova/plugin.xml`.

[source, bash]
--
$ git status
Expand All @@ -61,6 +64,8 @@ Changes not staged for commit:
modified: lerna.json
modified: packages/auth/package.json
modified: packages/core/package.json
modified: packages/metrics-cordova/package.json
modified: packages/metrics-cordova/plugin.xml
--

Commit and push these changes, then open a Pull Request to `master`.
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"exact": true
}
},
"version": "0.2.0"
"version": "0.2.1"
}
4 changes: 2 additions & 2 deletions packages/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aerogear/auth",
"version": "0.2.0",
"version": "0.2.1",
"description": "JavaScript Auth module for AeroGear services",
"main": "dist/index.js",
"types": "types/index.d.ts",
Expand Down Expand Up @@ -67,7 +67,7 @@
"typescript": "^2.8.1"
},
"dependencies": {
"@aerogear/core": "0.2.0",
"@aerogear/core": "0.2.1",
"keycloak-js": "4.0.0-beta.1",
"loglevel": "^1.6.1",
"url": "^0.11.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aerogear/core",
"version": "0.2.0",
"version": "0.2.1",
"description": "JavaScript Core SDK for AeroGear services",
"main": "dist/index.js",
"types": "types/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/metrics-cordova/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Wrapper for existing cordova plugins that are being used for AeroGear metrics SD
## Installation

```
cordova plugin add cordova-plugin-aerogear-metrics
cordova plugin add @aerogear/cordova-plugin-aerogear-metrics
```

## Using development version of plugin

```
cordova plugin add ./metrics-cordova
cordova plugin add ./metrics-cordova --link
```
2 changes: 1 addition & 1 deletion packages/metrics-cordova/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aerogear/cordova-plugin-aerogear-metrics",
"version": "0.2.0",
"version": "0.2.1",
"description": "Cordova plugin for @aerogear/metrics",
"cordova": {
"id": "cordova-plugin-aerogear-metrics",
Expand Down
2 changes: 1 addition & 1 deletion packages/metrics-cordova/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<plugin
id="cordova-plugin-aerogear-metrics"
version="0.0.1"
version="0.2.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">

Expand Down

0 comments on commit 9500263

Please sign in to comment.