Skip to content

Commit

Permalink
new release version 0.4.0 with support for objects
Browse files Browse the repository at this point in the history
  • Loading branch information
bjdixon committed Oct 24, 2015
1 parent 6e9d831 commit 10da927
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module.exports = function(grunt) {
grunt.registerTask('lint', ['jshint']);
grunt.registerTask('coverage', ['jasmine:coverage']);
grunt.registerTask('docs', ['jsdoc']);
grunt.registerTask('build', ['jshint', 'uglify', 'jsdoc']);
grunt.registerTask('build', ['jshint', 'uglify']);

};

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Dependency Status](https://david-dm.org/bjdixon/xo.svg)](https://david-dm.org/bjdixon/xo)
[![devDependency Status](https://david-dm.org/bjdixon/xo/dev-status.svg)](https://david-dm.org/bjdixon/xo#info=devDependencies)

Helper utils for working with functions and arrays in JavaScript. Full documentation at http://bjdixon.github.io/xo/
Helper utils for working with functions, arrays and objects in JavaScript. Full documentation at http://bjdixon.github.io/xo/

## Introduction
xo is essentially a stripped down version of an underscore/lodash type library. I've only implemented the functions that I use the most and those that can be used to create the remaining functions from these types of library.
Expand Down
2 changes: 1 addition & 1 deletion dist/xo.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 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xo-utils",
"version": "0.3.2",
"description": "Helper utilities for working with functions and arrays",
"version": "0.4.0",
"description": "Helper utilities for working with functions, arrays and objects",
"main": "src/xo.js",
"author": "bjdixon",
"dependencies": {},
Expand Down
2 changes: 1 addition & 1 deletion src/xo.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @version 0.3.2
*/
xo = {};
xo.VERSION = '0.3.2';
xo.VERSION = '0.4.0';

function identity(x) {
return x;
Expand Down
2 changes: 1 addition & 1 deletion test/xo.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if(typeof xo === 'undefined') {
describe('xo.VERSION', function() {

it('returns correct version number', function() {
expect(xo.VERSION).toBe('0.3.2');
expect(xo.VERSION).toBe('0.4.0');
});

});
Expand Down

0 comments on commit 10da927

Please sign in to comment.