From 667f26770659fb4bdfb1bfe12444754579813c55 Mon Sep 17 00:00:00 2001 From: Andy VanWagoner Date: Mon, 6 Jul 2015 10:01:54 -0600 Subject: [PATCH] [internal] update metadata and dependencies --- CHANGELOG.md | 6 ++++++ CONTRIBUTING.md | 2 +- README.md | 18 +++++++++--------- package.json | 10 +++++----- src/logo/icon.svg | 8 +++++--- test/extract.cli.spec.js | 2 +- test/format.spec.js | 2 +- test/inline.cli.spec.js | 2 +- test/lint.cli.spec.js | 2 +- 9 files changed, 30 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc9e1a10..b47b4e2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ > - [Internal] > - [Polish] +## 2.5.1 + +* **Internal** + * Update metadata for new github org + * Update dependencies + ## 2.5.0 * **New Feature** diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f03ccda2..ec221fa0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ Contributions are always welcome, no matter how large or small. Before contributing, please read the -[code of conduct](https://github.com/thetalecrafter/format-message/blob/master/CODE_OF_CONDUCT.md). +[code of conduct](https://github.com/format-message/format-message/blob/master/CODE_OF_CONDUCT.md). ## Developing diff --git a/README.md b/README.md index bdeafa88..e46550d9 100644 --- a/README.md +++ b/README.md @@ -300,15 +300,15 @@ License This software is free to use under the MIT license. See the [LICENSE-MIT file][LICENSE] for license text and copyright information. -[logo]: https://cdn.rawgit.com/thetalecrafter/format-message/446d303/src/logo/format-message.svg +[logo]: https://cdn.rawgit.com/format-message/format-message/446d303/src/logo/format-message.svg [npm]: https://www.npmjs.org/package/format-message [npm-image]: https://img.shields.io/npm/v/format-message.svg -[deps]: https://david-dm.org/thetalecrafter/format-message -[deps-image]: https://img.shields.io/david/thetalecrafter/format-message.svg -[dev-deps]: https://david-dm.org/thetalecrafter/format-message#info=devDependencies -[dev-deps-image]: https://img.shields.io/david/dev/thetalecrafter/format-message.svg -[build]: https://travis-ci.org/thetalecrafter/format-message -[build-image]: https://img.shields.io/travis/thetalecrafter/format-message.svg +[deps]: https://david-dm.org/format-message/format-message +[deps-image]: https://img.shields.io/david/format-message/format-message.svg +[dev-deps]: https://david-dm.org/format-message/format-message#info=devDependencies +[dev-deps-image]: https://img.shields.io/david/dev/format-message/format-message.svg +[build]: https://travis-ci.org/format-message/format-message +[build-image]: https://img.shields.io/travis/format-message/format-message.svg [style]: https://github.com/feross/standard [style-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg [license-image]: https://img.shields.io/npm/l/format-message.svg @@ -318,6 +318,6 @@ This software is free to use under the MIT license. See the [LICENSE-MIT file][L [icu-php]: http://php.net/manual/en/class.messageformatter.php [icu-java]: http://icu-project.org/apiref/icu4j/ [intl]: https://github.com/andyearnshaw/Intl.js -[message-format]: https://github.com/thetalecrafter/message-format +[message-format]: https://github.com/format-message/message-format [babel]: https://github.com/babel/babel -[LICENSE]: https://github.com/thetalecrafter/format-message/blob/master/LICENSE-MIT +[LICENSE]: https://github.com/format-message/format-message/blob/master/LICENSE-MIT diff --git a/package.json b/package.json index dc17e8ad..88d35c59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "format-message", - "version": "2.5.0", + "version": "2.5.1", "description": "Write default messages inline. Optionally transpile translations.", "keywords": [ "i18n", @@ -45,7 +45,7 @@ "karma": "^0.12.35", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^0.2.0", - "karma-cli": "^0.0.4", + "karma-cli": "^0.1.0", "karma-firefox-launcher": "^0.1.4", "karma-mocha": "^0.2.0", "karma-phantomjs-launcher": "^0.2.0", @@ -77,7 +77,7 @@ }, "repository": { "type": "git", - "url": "http://github.com/thetalecrafter/format-message.git" + "url": "http://github.com/format-message/format-message.git" }, "author": { "name": "Andy VanWagoner", @@ -85,7 +85,7 @@ }, "license": "MIT", "bugs": { - "url": "https://github.com/thetalecrafter/format-message/issues" + "url": "https://github.com/format-message/format-message/issues" }, - "homepage": "https://github.com/thetalecrafter/format-message" + "homepage": "https://github.com/format-message/format-message" } diff --git a/src/logo/icon.svg b/src/logo/icon.svg index 6f188a45..65b2c78f 100644 --- a/src/logo/icon.svg +++ b/src/logo/icon.svg @@ -1,4 +1,4 @@ - + - + - + diff --git a/test/extract.cli.spec.js b/test/extract.cli.spec.js index fc6b5bbd..7db52e8a 100644 --- a/test/extract.cli.spec.js +++ b/test/extract.cli.spec.js @@ -1,4 +1,4 @@ -/*eslint-env mocha */ +/* eslint-env mocha */ import { expect } from 'chai' import { exec } from 'child_process' import { readFileSync, unlinkSync } from 'fs' diff --git a/test/format.spec.js b/test/format.spec.js index c8a86d16..649f5691 100644 --- a/test/format.spec.js +++ b/test/format.spec.js @@ -1,4 +1,4 @@ -/*eslint-env mocha */ +/* eslint-env mocha */ if (typeof Intl === 'undefined') { require('intl') } import { expect } from 'chai' import MessageFormat from 'message-format' diff --git a/test/inline.cli.spec.js b/test/inline.cli.spec.js index 87a5f692..6cf06a21 100644 --- a/test/inline.cli.spec.js +++ b/test/inline.cli.spec.js @@ -1,4 +1,4 @@ -/*eslint-env mocha */ +/* eslint-env mocha */ import { expect } from 'chai' import { exec } from 'child_process' import { readFileSync, unlinkSync, readdirSync, rmdirSync } from 'fs' diff --git a/test/lint.cli.spec.js b/test/lint.cli.spec.js index 3b728556..5a62b338 100644 --- a/test/lint.cli.spec.js +++ b/test/lint.cli.spec.js @@ -1,4 +1,4 @@ -/*eslint-env mocha */ +/* eslint-env mocha */ import { expect } from 'chai' import { exec } from 'child_process'