Skip to content
This repository was archived by the owner on Oct 1, 2018. It is now read-only.

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikDemyankov committed Dec 2, 2015
1 parent 3ae1eaa commit 30866bb
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 8 deletions.
28 changes: 24 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,33 @@
# Change Log

## 1.1.1 (2015-12-11)
## 1.1.2 (2015-12-2)

**Bug fixes:**

* Android. Fixed [issue #43](https://github.com/nordnet/cordova-hot-code-push/issues/43). Merged [pull request #44](https://github.com/nordnet/cordova-hot-code-push/pull/44). Thanks to [@andreialecu](https://github.com/andreialecu) for helping to fix that problem.
* iOS. Fixed [issue #53](https://github.com/nordnet/cordova-hot-code-push/issues/53).
* iOS. Fixed rollback procedure, if update installation has failed.
* iOS. Fixed issue, when update failed to install if it contained unexisting folders. Thanks to [@legege](https://github.com/legege) for providing [pull request #50](https://github.com/nordnet/cordova-hot-code-push/pull/50).
* Fixed [issue #49](https://github.com/nordnet/cordova-hot-code-push/issues/49) and [issue #48](https://github.com/nordnet/cordova-hot-code-push/issues/48). Added support for Cordova v5.4.
* Other fixes for both platforms, that aimed to make update procedure safer for the user.

**Enchancements:**

* Merged [pull request #40](https://github.com/nordnet/cordova-hot-code-push/pull/40). Preparation to add auth headers to the network requests. Thanks to [@davidovich](https://github.com/davidovich).
* Merged [pull request #52](https://github.com/nordnet/cordova-hot-code-push/pull/52). Thanks to [@legege](https://github.com/legege).

**Docs:**

* Documentation updates regarding `min_native_interface` for Android. Thanks to [@andreialecu](https://github.com/andreialecu) for providing [pull request #46](https://github.com/nordnet/cordova-hot-code-push/pull/46).

## 1.1.1 (2015-11-12)

Release holds only some documentation updates:

- Added section: `Migrating from previous version`.
- Small update to quick start guides.

## 1.1.0 (2015-10-11)
## 1.1.0 (2015-11-10)

**Enchancements:**

Expand All @@ -20,13 +40,13 @@ Release holds only some documentation updates:

Since local development mode was moved to the separate plugin - that should fix the [issue #26](https://github.com/nordnet/cordova-hot-code-push/issues/26) with the Swift on iOS, when it lead for the app to be rejected by the Apple. When development is done - just remove development plugin and that's it. For more information please visit [documentation page](https://github.com/nordnet/cordova-hot-code-push-local-dev-addon) of the local development add-on.

## 1.0.5 (2015-03-11)
## 1.0.5 (2015-11-03)

**Bug fixes:**

- Fixed [issue #31](https://github.com/nordnet/cordova-hot-code-push/issues/31). Additional checking that `www` folder was installed on the external storage.

## 1.0.4 (2015-23-10)
## 1.0.4 (2015-10-23)

**Bug fixes:**

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ As a result, your application receives updates of the web content as soon as pos
- [Error codes](#error-codes)

### Installation
This requires cordova 5.0+ (current stable 1.1.1)
This requires cordova 5.0+ (current stable 1.1.2)
```sh
cordova plugin add cordova-hot-code-push-plugin
```
Expand Down Expand Up @@ -368,7 +368,7 @@ In a `config.xml` you usually specify versions like so:

Preference creates dependency between the web and the native versions of the application.

**Important!** Due to [a quirk in cordova](https://issues.apache.org/jira/browse/CB-8976), the version code in your generated `.apk` will be multiplied by 10, resulting in an apk with a version code of 70, 72, or 74, depending on the platform (arm/x86/etc) for the previous example. In order to work around this, we recommend multiplying the iOS version code by `10` for every release, so that a `min_native_interface` of `70` can target both platforms, making your config.xml similar to:
**Important!** Due to [a quirk in cordova](https://issues.apache.org/jira/browse/CB-8976), the version code in your generated `.apk` will be multiplied by 10, resulting in an apk with a version code of 70, 72, or 74, depending on the platform (arm/x86/etc) for the previous example. In order to work around this, we recommend multiplying the iOS version code by `10` for every release, so that a `min_native_interface` of `70` can target both platforms, making your config.xml similar to:
```xml
<widget id="io.cordova.hellocordova"
version="1.0.1"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-hot-code-push-plugin",
"version": "1.1.1",
"version": "1.1.2",
"description": "Cordova plugin to perform code updates on the fly",
"cordova": {
"id": "cordova-hot-code-push-plugin",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-hot-code-push-plugin"
version="1.1.0">
version="1.1.2">

<name>Hot Code Push Plugin</name>
<description>Cordova plugin to perform code updates on the fly</description>
Expand Down

0 comments on commit 30866bb

Please sign in to comment.