]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
bump version
authorMark Otto <markdotto@gmail.com>
Tue, 4 Jul 2017 20:48:46 +0000 (13:48 -0700)
committerMark Otto <markdotto@gmail.com>
Tue, 4 Jul 2017 20:48:46 +0000 (13:48 -0700)
21 files changed:
README.md
docs/assets/js/src/customizer.js
grunt/npm-shrinkwrap.json
js/affix.js
js/alert.js
js/button.js
js/carousel.js
js/collapse.js
js/dropdown.js
js/modal.js
js/popover.js
js/scrollspy.js
js/tab.js
js/tooltip.js
js/transition.js
less/bootstrap.less
less/theme.less
nuget/bootstrap.less.nuspec
nuget/bootstrap.nuspec
package.js
package.json

index 0fcc7f0ad37c3747343bfb4bf379686b04f34add..fc4f5de3cb56775e520c7af35eda79f69f5a86d0 100644 (file)
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ To get started, check out <http://getbootstrap.com>!
 
 Several quick start options are available:
 
-* [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.3.7.zip).
+* [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.4.0.zip).
 * Clone the repo: `git clone https://github.com/twbs/bootstrap.git`.
 * Install with [Bower](http://bower.io): `bower install bootstrap`.
 * Install with [npm](https://www.npmjs.com): `npm install bootstrap@3`.
index 84d3e6832d1f702dc72f3e3cc607ba370a915f75..00de361676459b3574a39a883e2f5cc28c23f6e7 100644 (file)
@@ -12,7 +12,7 @@ window.onload = function () { // wait for load in a dumb way because B-0
   'use strict';
 
   var cw = '/*!\n' +
-           ' * Bootstrap v3.3.7 (http://getbootstrap.com)\n' +
+           ' * Bootstrap v3.4.0 (http://getbootstrap.com)\n' +
            ' * Copyright 2011-' + new Date().getFullYear() + ' Twitter, Inc.\n' +
            ' * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n' +
            ' */\n\n'
index cc57def0fe6c7db3a90bbebd20013620c450fc5d..67e10b5379d43c695fa9d270d245b57edb8419c2 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "bootstrap",
-  "version": "3.3.7",
+  "version": "3.4.0",
   "dependencies": {
     "abbrev": {
       "version": "1.0.9",
index 7f6516818ac3bab664474aaa8bd9e2db3fff2df2..b86bc4f3402fff5252007e37f23b51aef102f2e6 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: affix.js v3.3.7
+ * Bootstrap: affix.js v3.4.0
  * http://getbootstrap.com/javascript/#affix
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -28,7 +28,7 @@
     this.checkPosition()
   }
 
-  Affix.VERSION  = '3.3.7'
+  Affix.VERSION  = '3.4.0'
 
   Affix.RESET    = 'affix affix-top affix-bottom'
 
index db97f3b02b219b2fb25dd7bd7b4708d75b8065cc..058d82527ca0b4838fcf0361738f4450ee90a757 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: alert.js v3.3.7
+ * Bootstrap: alert.js v3.4.0
  * http://getbootstrap.com/javascript/#alerts
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -18,7 +18,7 @@
     $(el).on('click', dismiss, this.close)
   }
 
-  Alert.VERSION = '3.3.7'
+  Alert.VERSION = '3.4.0'
 
   Alert.TRANSITION_DURATION = 150
 
index 843b39c9d2fbf0fc113e625eec7bdfa7bec3f40c..e18b8aeaed90e0f2f1bd00970e3e5e05af5c7dc2 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: button.js v3.3.7
+ * Bootstrap: button.js v3.4.0
  * http://getbootstrap.com/javascript/#buttons
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -19,7 +19,7 @@
     this.isLoading = false
   }
 
-  Button.VERSION  = '3.3.7'
+  Button.VERSION  = '3.4.0'
 
   Button.DEFAULTS = {
     loadingText: 'loading...'
index 6ff954c9bde09acb4e93cc0d2df707e75848d67a..3f642f35bfea0617dae1f55379f6e40bea11ef5a 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: carousel.js v3.3.7
+ * Bootstrap: carousel.js v3.4.0
  * http://getbootstrap.com/javascript/#carousel
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -30,7 +30,7 @@
       .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
   }
 
-  Carousel.VERSION  = '3.3.7'
+  Carousel.VERSION  = '3.4.0'
 
   Carousel.TRANSITION_DURATION = 600
 
index 12038693d9d26e6acf0f5b4f71553f24258d56f8..08862a50c41f365a2ca83b90a8dd75ed1127732b 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: collapse.js v3.3.7
+ * Bootstrap: collapse.js v3.4.0
  * http://getbootstrap.com/javascript/#collapse
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -30,7 +30,7 @@
     if (this.options.toggle) this.toggle()
   }
 
-  Collapse.VERSION  = '3.3.7'
+  Collapse.VERSION  = '3.4.0'
 
   Collapse.TRANSITION_DURATION = 350
 
index 04e9c2de47db0d8b48e8ee9fbf2d9827987384fb..75fa55ea86ff5ec278032417fdb0a1ad3a479a88 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: dropdown.js v3.3.7
+ * Bootstrap: dropdown.js v3.4.0
  * http://getbootstrap.com/javascript/#dropdowns
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -19,7 +19,7 @@
     $(element).on('click.bs.dropdown', this.toggle)
   }
 
-  Dropdown.VERSION = '3.3.7'
+  Dropdown.VERSION = '3.4.0'
 
   function getParent($this) {
     var selector = $this.attr('data-target')
index f84142d81f80ccd04d2de5264f26da738a36cf9e..f0ef87b94aac3ee0eb6203a4456c488a8da18ea1 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: modal.js v3.3.7
+ * Bootstrap: modal.js v3.4.0
  * http://getbootstrap.com/javascript/#modals
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -33,7 +33,7 @@
     }
   }
 
-  Modal.VERSION  = '3.3.7'
+  Modal.VERSION  = '3.4.0'
 
   Modal.TRANSITION_DURATION = 300
   Modal.BACKDROP_TRANSITION_DURATION = 150
index efe19567a14ca29038b3c94a88f20fc1456b8ebe..a61f2b8d119636ee655f29b59f435c748d7f97bd 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: popover.js v3.3.7
+ * Bootstrap: popover.js v3.4.0
  * http://getbootstrap.com/javascript/#popovers
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -19,7 +19,7 @@
 
   if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
 
-  Popover.VERSION  = '3.3.7'
+  Popover.VERSION  = '3.4.0'
 
   Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
     placement: 'right',
index fe1980951b5fde273ef68e72aa433c84328bad00..fd3e9aff1a39dc7e69b1e5a0a55c07ef91bfa40a 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: scrollspy.js v3.3.7
+ * Bootstrap: scrollspy.js v3.4.0
  * http://getbootstrap.com/javascript/#scrollspy
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -28,7 +28,7 @@
     this.process()
   }
 
-  ScrollSpy.VERSION  = '3.3.7'
+  ScrollSpy.VERSION  = '3.4.0'
 
   ScrollSpy.DEFAULTS = {
     offset: 10
index c4a8635480934aab312af103dfbbfb1722a7d8c5..990c25be50e0d0ddddba808119915d15fce934c3 100644 (file)
--- a/js/tab.js
+++ b/js/tab.js
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: tab.js v3.3.7
+ * Bootstrap: tab.js v3.4.0
  * http://getbootstrap.com/javascript/#tabs
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
@@ -19,7 +19,7 @@
     // jscs:enable requireDollarBeforejQueryAssignment
   }
 
-  Tab.VERSION = '3.3.7'
+  Tab.VERSION = '3.4.0'
 
   Tab.TRANSITION_DURATION = 150
 
index e35d9c7cccd904d0c95bde55b15f27e3c341cf53..968a97871abecf2aa79d9a5ff0ce16dd07f77a5f 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: tooltip.js v3.3.7
+ * Bootstrap: tooltip.js v3.4.0
  * http://getbootstrap.com/javascript/#tooltip
  * Inspired by the original jQuery.tipsy by Jason Frame
  * ========================================================================
@@ -26,7 +26,7 @@
     this.init('tooltip', element, options)
   }
 
-  Tooltip.VERSION  = '3.3.7'
+  Tooltip.VERSION  = '3.4.0'
 
   Tooltip.TRANSITION_DURATION = 150
 
index db76596e84e4e8104086499c99cc454d2633757f..1801320591d7b8b6deab7e3e708ed734baa1e6e7 100644 (file)
@@ -1,5 +1,5 @@
 /* ========================================================================
- * Bootstrap: transition.js v3.3.7
+ * Bootstrap: transition.js v3.4.0
  * http://getbootstrap.com/javascript/#transitions
  * ========================================================================
  * Copyright 2011-2016 Twitter, Inc.
index f0aa08f3a6e3cb22d0db348acec3d1e9f5b1320f..88f7802debe2862bdd3f6a23ce32248f5990dbed 100644 (file)
@@ -1,5 +1,5 @@
 /*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Bootstrap v3.4.0 (http://getbootstrap.com)
  * Copyright 2011-2016 Twitter, Inc.
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  */
index fb6174427ba296a62cc334a24a618dcac0700505..905fa0e07efce88b18ba713dfcb852b058501acb 100644 (file)
@@ -1,5 +1,5 @@
 /*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Bootstrap v3.4.0 (http://getbootstrap.com)
  * Copyright 2011-2016 Twitter, Inc.
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  */
index c72d9ee75fe8ebe54658d72ee5d445de7e4c14fb..20bc8d5457abe9e1e3897fad5818528c53d5e603 100644 (file)
@@ -2,7 +2,7 @@
 <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
   <metadata>
     <id>bootstrap.less</id>
-    <version>3.3.7</version>
+    <version>3.4.0</version>
     <title>Bootstrap Less</title>
     <authors>Twitter, Inc.</authors>
     <owners>bootstrap</owners>
index aa0db01ac513361e20daa2238647cdf6dcce00a0..f62029d7fef7e6ee8a03492f34f1482a914aebcb 100644 (file)
@@ -2,7 +2,7 @@
 <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
   <metadata>
     <id>bootstrap</id>
-    <version>3.3.7</version>
+    <version>3.4.0</version>
     <title>Bootstrap CSS</title>
     <authors>Twitter, Inc.</authors>
     <owners>bootstrap</owners>
index f1ddd0c21ec891f137edb4c99c8baf273fc50263..bfaa4bc1f276001e5f51a041594e9dc6a4b401ef 100644 (file)
@@ -6,7 +6,7 @@
 Package.describe({
   name: 'twbs:bootstrap',  // http://atmospherejs.com/twbs/bootstrap
   summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
-  version: '3.3.7',
+  version: '3.4.0',
   git: 'https://github.com/twbs/bootstrap.git'
 });
 
index fe4b31dea364a3f58a99fe32456730e538182569..1d674de6af17806b91d4042d12d99afe9e646ccd 100644 (file)
@@ -1,7 +1,7 @@
 {
   "name": "bootstrap",
   "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
-  "version": "3.3.7",
+  "version": "3.4.0",
   "keywords": [
     "css",
     "less",