Repository: cordova-common Updated Branches: refs/heads/master b30d8991e -> 3d4602af9
CB-13231 Updated version and RELEASENOTES.md for release 2.1.0 Project: http://git-wip-us.apache.org/repos/asf/cordova-common/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-common/commit/e6d8e6f0 Tree: http://git-wip-us.apache.org/repos/asf/cordova-common/tree/e6d8e6f0 Diff: http://git-wip-us.apache.org/repos/asf/cordova-common/diff/e6d8e6f0 Branch: refs/heads/master Commit: e6d8e6f06320e069b50bc0cf39737da5e0c4738a Parents: b30d899 Author: Audrey So <[email protected]> Authored: Wed Aug 30 14:48:23 2017 -0700 Committer: Audrey So <[email protected]> Committed: Wed Aug 30 14:54:55 2017 -0700 ---------------------------------------------------------------------- .ratignore | 1 + RELEASENOTES.md | 10 ++++++++++ package.json | 2 +- spec/plist-helpers.spec.js | 19 +++++++++++++++++++ 4 files changed, 31 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-common/blob/e6d8e6f0/.ratignore ---------------------------------------------------------------------- diff --git a/.ratignore b/.ratignore index d9f5e52..f107416 100644 --- a/.ratignore +++ b/.ratignore @@ -1,3 +1,4 @@ fixtures coverage jasmine.json +appveyor.yml http://git-wip-us.apache.org/repos/asf/cordova-common/blob/e6d8e6f0/RELEASENOTES.md ---------------------------------------------------------------------- diff --git a/RELEASENOTES.md b/RELEASENOTES.md index fa7f1d2..5dc4460 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,16 @@ --> # Cordova-common Release Notes +### 2.1.0 (August 30, 2017) +* [CB-13145](https://issues.apache.org/jira/browse/CB-13145) added variable replacing to `framework` tag +* [CB-13211](https://issues.apache.org/jira/browse/CB-13211) Add `allows-arbitrary-loads-for-media` attribute parsing for `getAccesses` +* [CB-11968](https://issues.apache.org/jira/browse/CB-11968) Added support for `<config-file>` in `config.xml` +* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) set up `eslint` and removed `jshint` +* [CB-12785](https://issues.apache.org/jira/browse/CB-12785) added `.gitignore`, `travis`, and `appveyor` support +* [CB-12250](https://issues.apache.org/jira/browse/CB-12250) & [CB-12409](https://issues.apache.org/jira/browse/CB-12409) *iOS*: Fix bug with escaping properties from `plist` file +* [CB-12762](https://issues.apache.org/jira/browse/CB-12762) updated `common`, `fetch`, and `serve` `pkgJson` to point `pkgJson` repo items to github mirrors +* [CB-12766](https://issues.apache.org/jira/browse/CB-12766) Consistently write `JSON` with 2 spaces indentation + ### 2.0.3 (May 02, 2017) * [CB-8978](https://issues.apache.org/jira/browse/CB-8978) Add option to get `resource-file` from `root` * [CB-11908](https://issues.apache.org/jira/browse/CB-11908) Add tests for `edit-config` in `config.xml` http://git-wip-us.apache.org/repos/asf/cordova-common/blob/e6d8e6f0/package.json ---------------------------------------------------------------------- diff --git a/package.json b/package.json index 247c292..a065bb8 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "cordova-common", "description": "Apache Cordova tools and platforms shared routines", "license": "Apache-2.0", - "version": "2.0.4-dev", + "version": "2.1.0", "repository": { "type": "git", "url": "https://github.com/apache/cordova-lib" http://git-wip-us.apache.org/repos/asf/cordova-common/blob/e6d8e6f0/spec/plist-helpers.spec.js ---------------------------------------------------------------------- diff --git a/spec/plist-helpers.spec.js b/spec/plist-helpers.spec.js index 7c3b35a..3a6fa02 100644 --- a/spec/plist-helpers.spec.js +++ b/spec/plist-helpers.spec.js @@ -1,3 +1,22 @@ +/** + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +*/ + var plistHelpers = require('../src/util/plist-helpers'); describe('prunePLIST', function () { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
