Skip to content

Commit e347ec7

Browse files
committed
Release 1.5.9
1 parent 98c37d6 commit e347ec7

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
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.8/dist/primality.js)
15-
* [Production build](https://raw.github.com/KenanY/primality/1.5.8/dist/primality.min.js)
14+
* [Development build](https://raw.github.com/KenanY/primality/1.5.9/dist/primality.js)
15+
* [Production build](https://raw.github.com/KenanY/primality/1.5.9/dist/primality.min.js)
1616

1717
## Features
1818

@@ -151,8 +151,8 @@ primality.isWilsonPrime(563);
151151

152152
## Release Notes
153153

154-
### 1.5.8
154+
### 1.5.9
155155

156-
- Outsource factorial function
156+
- factorial@0.0
157157

158158
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.8",
3+
"version": "1.5.9",
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.8",
5+
"version": "1.5.9",
66
"keywords": [
77
"browser",
88
"client",

dist/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.9
33
* (c) 2012–2013 Kenan Yildirim
44
*
55
* Includes functions from Lo-Dash
@@ -137,7 +137,7 @@
137137
function isWilsonPrime(value) {
138138
return _.contains(WILSON_PRIMES, value) ? true : (factorial(value - 1) + 1) % Math.pow(value, 2) === 0;
139139
}
140-
primality.VERSION = "1.5.7";
140+
primality.VERSION = "1.5.9";
141141
primality.areTwinPrimes = areTwinPrimes;
142142
primality.areCousinPrimes = areCousinPrimes;
143143
primality.areSexyPrimes = areSexyPrimes;

dist/primality.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.8",
3+
"version": "1.5.9",
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.8
2+
* primality v1.5.9
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.8';
207+
primality.VERSION = '1.5.9';
208208

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

0 commit comments

Comments
 (0)