Skip to content

Commit

Permalink
Release 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kenany committed Aug 26, 2013
1 parent 2c5b798 commit 0f3acab
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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).
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "primality",
"version": "1.5.7",
"version": "1.5.8",
"main": "./dist/primality.js",
"ignore": [
".*",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "primality",
"version": "1.5.7",
"version": "1.5.8",
"description": "A JavaScript library for prime numbers.",
"keywords": [
"browser",
Expand Down
4 changes: 2 additions & 2 deletions primality.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* primality v1.5.7
* primality v1.5.8
* (c) 2012–2013 Kenan Yildirim
*
* Includes functions from Lo-Dash
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 0f3acab

Please sign in to comment.