Browse Source

Update to 1.20.1

zhixin 3 years ago
parent
commit
409684bdca

+ 2 - 2
.github/ISSUE_TEMPLATE/1_Bug_report.yaml

@@ -7,7 +7,7 @@ body:
     id: affected-versions
     attributes:
       label: Bootstraptable version(s) affected
-      placeholder: 1.18.0
+      placeholder: 1.20.1
     validations:
       required: true
   - type: textarea
@@ -38,4 +38,4 @@ body:
     attributes:
         value: |
           Love bootstrap-table? Please consider supporting our collective:
-          👉  https://opencollective.com/bootstrap-table/donate
+          👉  https://opencollective.com/bootstrap-table/donate

+ 15 - 0
CHANGELOG.md

@@ -1,6 +1,21 @@
 ChangeLog
 ---------
 
+### 1.20.1
+
+### Core
+
+- **Update:** Fixed toggle column bug with complex headers.
+- **Update:** Fixed icons option cannot work bug when it's a string.
+- **Update:** Updated TypeScript definitions.
+
+##### Extensions
+
+- **Update(cookie):** Fixed cookie extension error with multiple-sort.
+- **Update(export):** Fixed the `exportOptions` option cannot support the data attribute.
+- **Update(reorder-rows):**  Fixed reorder-rows cannot work because of missing default functions.
+
+
 ### 1.20.0
 
 #### Core

+ 1 - 1
_config.yml

@@ -27,7 +27,7 @@ algolia:
   index_name:     bootstrap-table
 
 # Custom variables
-current_version:  1.20.0
+current_version:  1.20.1
 title:            "Bootstrap Table"
 description:      "An extended table to the integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)"
 authors:          "Zhixin Wen, and Bootstrap Table contributors"

+ 1 - 1
bootstrap-table.jquery.json

@@ -1,6 +1,6 @@
 {
   "name": "bootstrap-table",
-  "version": "1.20.0",
+  "version": "1.20.1",
   "title": "Bootstrap Table",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
   "author": {

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "bootstrap-table",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
-  "version": "1.20.0",
+  "version": "1.20.1",
   "style": "dist/bootstrap-table.min.css",
   "sass": "src/bootstrap-table.scss",
   "main": "dist/bootstrap-table.min.js",

+ 16 - 0
site/news.md

@@ -4,6 +4,22 @@ title: News
 description: News and announcements for all things Bootstrap Table, including new releases.
 ---
 
+## Bootstrap Table 1.20.1
+
+<span class="post-date">12 May 2022</span>
+
+### Core
+
+- **Update:** Fixed toggle column bug with complex headers.
+- **Update:** Fixed icons option cannot work bug when it's a string.
+- **Update:** Updated TypeScript definitions.
+
+##### Extensions
+
+- **Update(cookie):** Fixed cookie extension error with multiple-sort.
+- **Update(export):** Fixed the `exportOptions` option cannot support the data attribute.
+- **Update(reorder-rows):**  Fixed reorder-rows cannot work because of missing default functions.
+
 ## Bootstrap Table 1.20.0
 
 <span class="post-date">25 Apr 2022</span>

+ 1 - 1
src/bootstrap-table.js

@@ -1,6 +1,6 @@
 /**
  * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.20.0
+ * version: 1.20.1
  * https://github.com/wenzhixin/bootstrap-table/
  */
 

+ 1 - 1
src/bootstrap-table.scss

@@ -1,6 +1,6 @@
 /**
  * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.20.0
+ * version: 1.20.1
  * https://github.com/wenzhixin/bootstrap-table/
  */
 

+ 1 - 1
src/constants/index.js

@@ -1,7 +1,7 @@
 /* eslint-disable no-unused-vars */
 import Utils from '../utils/index.js'
 
-const VERSION = '1.20.0'
+const VERSION = '1.20.1'
 
 const bootstrapVersion = Utils.getBootstrapVersion()