From 0f3acabe34a7784625825b96fa957d6851e8df6f Mon Sep 17 00:00:00 2001 From: Kenan Yildirim Date: Mon, 26 Aug 2013 17:57:57 -0400 Subject: [PATCH] Release 1.5.8 --- README.md | 8 ++++---- bower.json | 2 +- component.json | 2 +- package.json | 2 +- primality.js | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index b47926a..01ac4a3 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ numbers. ## Download - * [Development build](https://raw.github.com/KenanY/primality/1.5.7/dist/primality.js) - * [Production build](https://raw.github.com/KenanY/primality/1.5.7/dist/primality.min.js) + * [Development build](https://raw.github.com/KenanY/primality/1.5.8/dist/primality.js) + * [Production build](https://raw.github.com/KenanY/primality/1.5.8/dist/primality.min.js) ## Features @@ -152,8 +152,8 @@ primality.isWilsonPrime(563); ## Release Notes -### 1.5.7 +### 1.5.8 - - `isWilsonPrime` now works with unknown Wilson primes + - Outsource factorial function The full changelog is available [here](https://github.com/KenanY/primality/wiki/Changelog). \ No newline at end of file diff --git a/bower.json b/bower.json index cfc0b27..c9477d0 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "primality", - "version": "1.5.7", + "version": "1.5.8", "main": "./dist/primality.js", "ignore": [ ".*", diff --git a/component.json b/component.json index 8a04130..30e7aec 100644 --- a/component.json +++ b/component.json @@ -2,7 +2,7 @@ "name": "primality", "repo": "KenanY/primality", "description": "JavaScript library for prime numbers.", - "version": "1.5.7", + "version": "1.5.8", "keywords": [ "browser", "client", diff --git a/package.json b/package.json index 87c64cf..1c3c469 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "primality", - "version": "1.5.7", + "version": "1.5.8", "description": "A JavaScript library for prime numbers.", "keywords": [ "browser", diff --git a/primality.js b/primality.js index adc9d01..b23f0bd 100644 --- a/primality.js +++ b/primality.js @@ -1,5 +1,5 @@ /*! - * primality v1.5.7 + * primality v1.5.8 * (c) 2012–2013 Kenan Yildirim * * Includes functions from Lo-Dash @@ -204,7 +204,7 @@ function isWilsonPrime(value) { * @memberOf primality * @type String */ -primality.VERSION = '1.5.7'; +primality.VERSION = '1.5.8'; primality.areTwinPrimes = areTwinPrimes; primality.areCousinPrimes = areCousinPrimes;