Skip to content

Commit 0f3acab

Browse files
committed
Release 1.5.8
1 parent 2c5b798 commit 0f3acab

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ numbers.
1111

1212
## Download
1313

14-
* [Development build](https://raw.github.com/KenanY/primality/1.5.7/dist/primality.js)
15-
* [Production build](https://raw.github.com/KenanY/primality/1.5.7/dist/primality.min.js)
14+
* [Development build](https://raw.github.com/KenanY/primality/1.5.8/dist/primality.js)
15+
* [Production build](https://raw.github.com/KenanY/primality/1.5.8/dist/primality.min.js)
1616

1717
## Features
1818

@@ -152,8 +152,8 @@ primality.isWilsonPrime(563);
152152

153153
## Release Notes
154154

155-
### 1.5.7
155+
### 1.5.8
156156

157-
- `isWilsonPrime` now works with unknown Wilson primes
157+
- Outsource factorial function
158158

159159
The full changelog is available [here](https://github.com/KenanY/primality/wiki/Changelog).

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "primality",
3-
"version": "1.5.7",
3+
"version": "1.5.8",
44
"main": "./dist/primality.js",
55
"ignore": [
66
".*",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "primality",
33
"repo": "KenanY/primality",
44
"description": "JavaScript library for prime numbers.",
5-
"version": "1.5.7",
5+
"version": "1.5.8",
66
"keywords": [
77
"browser",
88
"client",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "primality",
3-
"version": "1.5.7",
3+
"version": "1.5.8",
44
"description": "A JavaScript library for prime numbers.",
55
"keywords": [
66
"browser",

primality.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* primality v1.5.7
2+
* primality v1.5.8
33
* (c) 2012–2013 Kenan Yildirim
44
*
55
* Includes functions from Lo-Dash
@@ -204,7 +204,7 @@ function isWilsonPrime(value) {
204204
* @memberOf primality
205205
* @type String
206206
*/
207-
primality.VERSION = '1.5.7';
207+
primality.VERSION = '1.5.8';
208208

209209
primality.areTwinPrimes = areTwinPrimes;
210210
primality.areCousinPrimes = areCousinPrimes;

0 commit comments

Comments
 (0)