diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ae6e22a..db0d485c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,19 @@ -## Latest Release: 4.1.0 +## Latest Release: 4.2.0 + +* Add Swedish locale +* Add Latvian locale +* Add Turkish locale +* Add Hebrew locale +* Add password input type +* Add textarea input type +* Add date input type +* Add time input type +* Add number input type +* Support DOM selectors for container argument +* UMD support +* Better support on mobile devices + +### 4.1.0 * Add support for placeholder attribute in prompts * Add select, email and checkbox types for prompts (thanks [@tarlepp](https://github.com/tarlepp)) diff --git a/README.md b/README.md index cf46eb87..4c168a1c 100644 --- a/README.md +++ b/README.md @@ -44,19 +44,25 @@ The latest major release of Bootbox - 4.0.0 - involved a total rewrite of the internal code and introduced an entirely new public API. It has not re-implemented some functionality from the 3.x series as of yet; this will be addressed in the coming weeks in the form of new minor releases; -[a task list for 4.2.0 is available](https://github.com/makeusabrew/bootbox/issues/162) - +[a task list for 4.3.0 is available](https://github.com/makeusabrew/bootbox/issues/220) - please feel free to add feedback and requests. There is no new major (e.g. 5.x) release on the roadmap at present. -## Latest Release: 4.1.0 - -* Add support for placeholder attribute in prompts -* Add select, email and checkbox types for prompts (thanks [@tarlepp](https://github.com/tarlepp)) -* Add Norwegian locale -* Allow setDefaults to take two key/val arguments -* Add unique classes for main dialog methods -* Create bower package +## Latest Release: 4.2.0 + +* Add Swedish locale +* Add Latvian locale +* Add Turkish locale +* Add Hebrew locale +* Add password input type +* Add textarea input type +* Add date input type +* Add time input type +* Add number input type +* Support DOM selectors for container argument +* UMD support +* Better support on mobile devices For a full list of releases and changes please see [the changelog](https://github.com/makeusabrew/bootbox/blob/master/CHANGELOG.md). @@ -64,7 +70,7 @@ For a full list of releases and changes please see [the changelog](https://githu (The MIT License) -Copyright (C) 2011-2013 by Nick Payne +Copyright (C) 2011-2014 by Nick Payne Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/bootbox.js b/bootbox.js index cbefb471..d9141961 100644 --- a/bootbox.js +++ b/bootbox.js @@ -1,5 +1,5 @@ /** - * bootbox.js [master branch] + * bootbox.js [v4.2.0] * * http://bootboxjs.com/license.txt */ diff --git a/bower.json b/bower.json index b14f6577..bbf5ee8b 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "bootbox.js", - "version": "4.1.0", + "version": "4.2.0", "main": "./bootbox.js", "ignore": [ "CHANGELOG.md", diff --git a/header.txt b/header.txt index 3895565f..c1eb1c1e 100644 --- a/header.txt +++ b/header.txt @@ -1,5 +1,5 @@ /** - * bootbox.js v4.1.0 + * bootbox.js v4.2.0 * * http://bootboxjs.com/license.txt */ diff --git a/package.json b/package.json index c8e94a1b..f219b576 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bootbox.js", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "Wrappers for JavaScript alert(), confirm() and other flexible dialogs using Twitter's bootstrap framework", "directories": { "test": "tests"