Skip to content
This repository was archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
update readme and version
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwdraper committed Oct 30, 2013
1 parent ab8426d commit 4d0be28
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 13 deletions.
6 changes: 5 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,17 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');

grunt.registerTask('default', [
'test'
]);

grunt.registerTask('test', [
'jshint',
'nodeunit'
]);

// P
grunt.registerTask('release', [
grunt.registerTask('build', [
'jshint',
'nodeunit',
'concat',
Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ Please submit all pull requests to the `develop` branch.

4. Add your tests to the files in `/tests`

5. To test your tests, run `grunt test`
5. To test your tests, run `grunt`

6. When all your tests are passing, run `grunt release` to minify all files
6. When all your tests are passing, run `grunt build` to minify all files

7. Submit a pull request.
7. Submit a pull request to the `develop` branch.


### Languages
Expand All @@ -42,6 +42,14 @@ See [the english unit tests](https://github.com/adamwdraper/Numeral-js/blob/mast

# Changelog

### 1.5.2

Bug fix: Unformat should pass through if given a number

Added a mechanism to control rounding behaviour

Added languageData() for getting and setting language props at runtime

### 1.5.1

Bug fix: Make sure values aren't changed during formatting
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "numeral",
"repo": "adamwdraper/Numeral-js",
"version": "1.5.1",
"version": "1.5.2",
"description": "Format and manipulate numbers.",
"keywords": [
"numeral",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "numeral",
"repo": "adamwdraper/Numeral-js",
"version": "1.5.1",
"version": "1.5.2",
"description": "Format and manipulate numbers.",
"keywords": [
"numeral",
Expand Down
4 changes: 2 additions & 2 deletions min/numeral.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions numeral.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* numeral.js
* version : 1.5.1
* version : 1.5.2
* author : Adam Draper
* license : MIT
* http://adamwdraper.github.com/Numeral-js/
Expand All @@ -13,7 +13,7 @@
************************************/

var numeral,
VERSION = '1.5.1',
VERSION = '1.5.2',
// internal storage for language config files
languages = {},
currentLanguage = 'en',
Expand Down
Loading

0 comments on commit 4d0be28

Please sign in to comment.