Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
tiesont committed Nov 7, 2024
1 parent fa7e283 commit 090bd76
Show file tree
Hide file tree
Showing 15 changed files with 126 additions and 130 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
## 6.0.0 (Latest Release)
## 6.0.1 (Latest Release)

- Updates prompt callback to return false from callback if `inputType` is 'checkbox', `required` option is `true`, and no checkbox has been checked
- Updates unit tests
- Adds tests for required option
- Cleanup up pattern tests
- Adds HTML output runner

### 6.0.0

- Removes various IE polyfills
- Replaces `var` with `let`
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(The MIT License)

Copyright (C) 2011-2023 by Nick Payne <[email protected]>
Copyright (C) 2011-2024 by Nick Payne <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
26 changes: 7 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@
Please see http://bootboxjs.com for full usage instructions, or head over to http://paynedigital.com/bootbox for
the original writeup about the project.

## Contact

[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/makeusabrew/bootbox?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

The easiest thing is to [find me on twitter @makeusabrew](http://twitter.com/makeusabrew).

## Contributing

Please see the [CONTRIBUTING](https://github.com/bootboxjs/bootbox/blob/master/CONTRIBUTING.md) file for guidelines.
Expand Down Expand Up @@ -42,27 +36,21 @@ Bootbox **3.3.0** is the *last* release to support Bootstrap 2.2.x.

Much more dependency information can be found [on the Bootbox website](http://bootboxjs.com/getting-started.html#bootbox-dependencies).

## 6.0.0 (Latest Release)
## 6.0.1 (Latest Release)

- Removes various IE polyfills
- Replaces `var` with `let`
- JSDoc cleanup
- Adds code to handle cases when click starts on the modal body and ends on the backdrop and `backdrop` is set to `true`
- `bootbox.locale.js` and `bootbox.all.js` are now generated files and will be found in the `/dist` directory
- Simplify locale file structure
- Changed a few locale identifiers to match IANA specifications:
- `bg_BG` -> `bg-BG`
- `pt-br` -> `pt-BR`
- `zh_CN` -> `zh-CN`
- `zh_TW` -> `zh-CW`
- Updates prompt callback to return false from callback if `inputType` is 'checkbox', `required` option is `true`, and no checkbox has been checked
- Updates unit tests
- Adds tests for required option
- Cleanup up pattern tests
- Adds HTML output runner

For a full list of releases and changes please see [the changelog](https://github.com/bootboxjs/bootbox/blob/master/CHANGELOG.md).

## License

(The MIT License)

Copyright (C) 2011-2023 by Nick Payne <[email protected]>
Copyright (C) 2011-2024 by Nick Payne <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions bootbox.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! @preserve
* bootbox.js
* version: 6.0.0
* version: 6.0.1
* author: Nick Payne <[email protected]>
* license: MIT
* http://bootboxjs.com/
Expand All @@ -22,7 +22,7 @@

let exports = {};

let VERSION = '6.0.0';
let VERSION = '6.0.1';
exports.VERSION = VERSION;

let locales = {
Expand Down
6 changes: 3 additions & 3 deletions dist/bootbox.all.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! @preserve
* bootbox.js
* version: 6.0.0
* version: 6.0.1
* author: Nick Payne <[email protected]>
* license: MIT
* http://bootboxjs.com/
Expand All @@ -22,7 +22,7 @@

let exports = {};

let VERSION = '6.0.0';
let VERSION = '6.0.1';
exports.VERSION = VERSION;

let locales = {
Expand Down Expand Up @@ -1216,7 +1216,7 @@

/*! @preserve
* bootbox.locales.js
* version: 6.0.0
* version: 6.0.1
* author: Nick Payne <[email protected]>
* license: MIT
* http://bootboxjs.com/
Expand Down
4 changes: 2 additions & 2 deletions dist/bootbox.all.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/bootbox.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! @preserve
* bootbox.js
* version: 6.0.0
* version: 6.0.1
* author: Nick Payne <[email protected]>
* license: MIT
* http://bootboxjs.com/
Expand All @@ -22,7 +22,7 @@

let exports = {};

let VERSION = '6.0.0';
let VERSION = '6.0.1';
exports.VERSION = VERSION;

let locales = {
Expand Down
2 changes: 1 addition & 1 deletion dist/bootbox.locales.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! @preserve
* bootbox.locales.js
* version: 6.0.0
* version: 6.0.1
* author: Nick Payne <[email protected]>
* license: MIT
* http://bootboxjs.com/
Expand Down
2 changes: 1 addition & 1 deletion dist/bootbox.locales.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 dist/bootbox.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion header.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Bootbox.js — alert, confirm, prompt, and flexible dialogs for the Bootstrap framework
* @version: 6.0.0
* @version: 6.0.1
* @project: https://github.com/bootboxjs/bootbox
* @license: MIT http://bootboxjs.com/license.txt
*/
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootbox",
"version": "6.0.0",
"version": "6.0.1",
"description": "Wrappers for JavaScript alert(), confirm(), prompt(), and other flexible dialogs using the Bootstrap framework",
"directories": {
"test": "tests"
Expand Down
2 changes: 1 addition & 1 deletion templates/umd-header-locales.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! @preserve
* bootbox.locales.js
* version: 6.0.0
* version: 6.0.1
* author: Nick Payne <[email protected]>
* license: MIT
* http://bootboxjs.com/
Expand Down
2 changes: 1 addition & 1 deletion templates/umd-header.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! @preserve
* bootbox.js
* version: 6.0.0
* version: 6.0.1
* author: Nick Payne <[email protected]>
* license: MIT
* http://bootboxjs.com/
Expand Down
Loading

0 comments on commit 090bd76

Please sign in to comment.