diff options
| author | XhmikosR <[email protected]> | 2020-05-13 22:36:00 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-13 22:36:00 +0300 |
| commit | 38ec7c4df7a04b6942516669edb9517c9035dc1d (patch) | |
| tree | e224c393d58ceeb993dede64e2e44962c99f1724 /js/src | |
| parent | de7af5ee0738d08ef2d6702654834beb5bfce35e (diff) | |
| download | bootstrap-38ec7c4df7a04b6942516669edb9517c9035dc1d.tar.xz bootstrap-38ec7c4df7a04b6942516669edb9517c9035dc1d.zip | |
Bump version to 5.0.0-alpha1 (#29925)
Also add v4.5.0 in versions and keep README.md pointing to v4.5.0 so that there are no broken stuff.
Diffstat (limited to 'js/src')
| -rw-r--r-- | js/src/alert.js | 4 | ||||
| -rw-r--r-- | js/src/button.js | 4 | ||||
| -rw-r--r-- | js/src/carousel.js | 4 | ||||
| -rw-r--r-- | js/src/collapse.js | 4 | ||||
| -rw-r--r-- | js/src/dom/data.js | 2 | ||||
| -rw-r--r-- | js/src/dom/event-handler.js | 2 | ||||
| -rw-r--r-- | js/src/dom/manipulator.js | 2 | ||||
| -rw-r--r-- | js/src/dom/polyfill.js | 2 | ||||
| -rw-r--r-- | js/src/dom/selector-engine.js | 2 | ||||
| -rw-r--r-- | js/src/dropdown.js | 4 | ||||
| -rw-r--r-- | js/src/modal.js | 4 | ||||
| -rw-r--r-- | js/src/popover.js | 4 | ||||
| -rw-r--r-- | js/src/scrollspy.js | 4 | ||||
| -rw-r--r-- | js/src/tab.js | 4 | ||||
| -rw-r--r-- | js/src/toast.js | 4 | ||||
| -rw-r--r-- | js/src/tooltip.js | 4 | ||||
| -rw-r--r-- | js/src/util/index.js | 2 | ||||
| -rw-r--r-- | js/src/util/sanitizer.js | 2 |
18 files changed, 29 insertions, 29 deletions
diff --git a/js/src/alert.js b/js/src/alert.js index 7badd8f60..c271fdf19 100644 --- a/js/src/alert.js +++ b/js/src/alert.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): alert.js + * Bootstrap (v5.0.0-alpha1): alert.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -22,7 +22,7 @@ import EventHandler from './dom/event-handler' */ const NAME = 'alert' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.alert' const EVENT_KEY = `.${DATA_KEY}` const DATA_API_KEY = '.data-api' diff --git a/js/src/button.js b/js/src/button.js index cf346863d..67f3b9627 100644 --- a/js/src/button.js +++ b/js/src/button.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): button.js + * Bootstrap (v5.0.0-alpha1): button.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -17,7 +17,7 @@ import SelectorEngine from './dom/selector-engine' */ const NAME = 'button' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.button' const EVENT_KEY = `.${DATA_KEY}` const DATA_API_KEY = '.data-api' diff --git a/js/src/carousel.js b/js/src/carousel.js index 93f896e53..2d0a5930b 100644 --- a/js/src/carousel.js +++ b/js/src/carousel.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): carousel.js + * Bootstrap (v5.0.0-alpha1): carousel.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -28,7 +28,7 @@ import SelectorEngine from './dom/selector-engine' */ const NAME = 'carousel' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.carousel' const EVENT_KEY = `.${DATA_KEY}` const DATA_API_KEY = '.data-api' diff --git a/js/src/collapse.js b/js/src/collapse.js index 4941ff0ac..ec75a8196 100644 --- a/js/src/collapse.js +++ b/js/src/collapse.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): collapse.js + * Bootstrap (v5.0.0-alpha1): collapse.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -28,7 +28,7 @@ import SelectorEngine from './dom/selector-engine' */ const NAME = 'collapse' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.collapse' const EVENT_KEY = `.${DATA_KEY}` const DATA_API_KEY = '.data-api' diff --git a/js/src/dom/data.js b/js/src/dom/data.js index 6dd5a5bb2..867bac7b6 100644 --- a/js/src/dom/data.js +++ b/js/src/dom/data.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): dom/data.js + * Bootstrap (v5.0.0-alpha1): dom/data.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ diff --git a/js/src/dom/event-handler.js b/js/src/dom/event-handler.js index f71b528ea..c5cb9cad0 100644 --- a/js/src/dom/event-handler.js +++ b/js/src/dom/event-handler.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): dom/event-handler.js + * Bootstrap (v5.0.0-alpha1): dom/event-handler.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ diff --git a/js/src/dom/manipulator.js b/js/src/dom/manipulator.js index 5629e1fab..87be3b15e 100644 --- a/js/src/dom/manipulator.js +++ b/js/src/dom/manipulator.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): dom/manipulator.js + * Bootstrap (v5.0.0-alpha1): dom/manipulator.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ diff --git a/js/src/dom/polyfill.js b/js/src/dom/polyfill.js index 2a1c381e6..ce397c2c3 100644 --- a/js/src/dom/polyfill.js +++ b/js/src/dom/polyfill.js @@ -2,7 +2,7 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): dom/polyfill.js + * Bootstrap (v5.0.0-alpha1): dom/polyfill.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ diff --git a/js/src/dom/selector-engine.js b/js/src/dom/selector-engine.js index 494f0d18e..876d8393f 100644 --- a/js/src/dom/selector-engine.js +++ b/js/src/dom/selector-engine.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): dom/selector-engine.js + * Bootstrap (v5.0.0-alpha1): dom/selector-engine.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ diff --git a/js/src/dropdown.js b/js/src/dropdown.js index 83623b93d..78e1a2eef 100644 --- a/js/src/dropdown.js +++ b/js/src/dropdown.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): dropdown.js + * Bootstrap (v5.0.0-alpha1): dropdown.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -26,7 +26,7 @@ import SelectorEngine from './dom/selector-engine' */ const NAME = 'dropdown' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.dropdown' const EVENT_KEY = `.${DATA_KEY}` const DATA_API_KEY = '.data-api' diff --git a/js/src/modal.js b/js/src/modal.js index af396b56c..749f47cef 100644 --- a/js/src/modal.js +++ b/js/src/modal.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): modal.js + * Bootstrap (v5.0.0-alpha1): modal.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -27,7 +27,7 @@ import SelectorEngine from './dom/selector-engine' */ const NAME = 'modal' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.modal' const EVENT_KEY = `.${DATA_KEY}` const DATA_API_KEY = '.data-api' diff --git a/js/src/popover.js b/js/src/popover.js index 4aac7e8ab..61ce5b267 100644 --- a/js/src/popover.js +++ b/js/src/popover.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): popover.js + * Bootstrap (v5.0.0-alpha1): popover.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -17,7 +17,7 @@ import Tooltip from './tooltip' */ const NAME = 'popover' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.popover' const EVENT_KEY = `.${DATA_KEY}` const CLASS_PREFIX = 'bs-popover' diff --git a/js/src/scrollspy.js b/js/src/scrollspy.js index cb6c5c624..8e414e91b 100644 --- a/js/src/scrollspy.js +++ b/js/src/scrollspy.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): scrollspy.js + * Bootstrap (v5.0.0-alpha1): scrollspy.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -24,7 +24,7 @@ import SelectorEngine from './dom/selector-engine' */ const NAME = 'scrollspy' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.scrollspy' const EVENT_KEY = `.${DATA_KEY}` const DATA_API_KEY = '.data-api' diff --git a/js/src/tab.js b/js/src/tab.js index c69ac3146..c7bb9c22d 100644 --- a/js/src/tab.js +++ b/js/src/tab.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): tab.js + * Bootstrap (v5.0.0-alpha1): tab.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -24,7 +24,7 @@ import SelectorEngine from './dom/selector-engine' */ const NAME = 'tab' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.tab' const EVENT_KEY = `.${DATA_KEY}` const DATA_API_KEY = '.data-api' diff --git a/js/src/toast.js b/js/src/toast.js index abb0ffd34..a55131531 100644 --- a/js/src/toast.js +++ b/js/src/toast.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): toast.js + * Bootstrap (v5.0.0-alpha1): toast.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -24,7 +24,7 @@ import Manipulator from './dom/manipulator' */ const NAME = 'toast' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.toast' const EVENT_KEY = `.${DATA_KEY}` diff --git a/js/src/tooltip.js b/js/src/tooltip.js index b86ddb2c8..68992fe77 100644 --- a/js/src/tooltip.js +++ b/js/src/tooltip.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): tooltip.js + * Bootstrap (v5.0.0-alpha1): tooltip.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -33,7 +33,7 @@ import SelectorEngine from './dom/selector-engine' */ const NAME = 'tooltip' -const VERSION = '4.3.1' +const VERSION = '5.0.0-alpha1' const DATA_KEY = 'bs.tooltip' const EVENT_KEY = `.${DATA_KEY}` const CLASS_PREFIX = 'bs-tooltip' diff --git a/js/src/util/index.js b/js/src/util/index.js index c9331e217..cee403481 100644 --- a/js/src/util/index.js +++ b/js/src/util/index.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): util/index.js + * Bootstrap (v5.0.0-alpha1): util/index.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ diff --git a/js/src/util/sanitizer.js b/js/src/util/sanitizer.js index 0f896b2c4..ffb19e838 100644 --- a/js/src/util/sanitizer.js +++ b/js/src/util/sanitizer.js @@ -1,6 +1,6 @@ /** * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): util/sanitizer.js + * Bootstrap (v5.0.0-alpha1): util/sanitizer.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ |
