Skip to content

Commit 10766ec

Browse files
author
Alain Dumesny
authored
Merge pull request #1110 from adumesny/develop
v0.6.0 release
2 parents 76cb766 + 115c3d2 commit 10766ec

File tree

8 files changed

+20
-15
lines changed

8 files changed

+20
-15
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,19 +62,19 @@ Using gridstack.js with jQuery UI
6262
* Using CDN (minimized):
6363

6464
```html
65-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@0.5.5/dist/gridstack.min.css" />
65+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@0.6.0/dist/gridstack.min.css" />
6666
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
67-
<script src="https://cdn.jsdelivr.net/npm/gridstack@0.5.5/dist/gridstack.all.js"></script>
67+
<script src="https://cdn.jsdelivr.net/npm/gridstack@0.6.0/dist/gridstack.all.js"></script>
6868
```
6969

7070
* Using CDN (debug):
7171

7272
```html
73-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@0.5.5/dist/gridstack.css" />
73+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@0.6.0/dist/gridstack.css" />
7474
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
75-
<script src="https://cdn.jsdelivr.net/npm/gridstack@0.5.5/dist/gridstack.js"></script>
76-
<script src="https://cdn.jsdelivr.net/npm/gridstack@0.5.5/dist/jquery-ui.js"></script>
77-
<script src="https://cdn.jsdelivr.net/npm/gridstack@0.5.5/dist/gridstack.jQueryUI.js"></script>
75+
<script src="https://cdn.jsdelivr.net/npm/gridstack@0.6.0/dist/gridstack.js"></script>
76+
<script src="https://cdn.jsdelivr.net/npm/gridstack@0.6.0/dist/jquery-ui.js"></script>
77+
<script src="https://cdn.jsdelivr.net/npm/gridstack@0.6.0/dist/gridstack.jQueryUI.js"></script>
7878
```
7979

8080
* or local:
@@ -194,7 +194,7 @@ $('.grid-stack').gridstack( {column: N} );
194194

195195
2) include `gridstack-extra.css` if **N < 12** (else custom CSS - see next). Without these, things will not render/work correctly.
196196
```html
197-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@0.5.5/dist/gridstack-extra.css"/>
197+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@0.6.0/dist/gridstack-extra.css"/>
198198

199199
<div class="grid-stack grid-stack-N">...</div>
200200
```

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack",
3-
"version": "0.5.5-dev",
3+
"version": "0.6.0",
44
"homepage": "https://github.com/gridstack/gridstack.js",
55
"authors": [
66
"Pavel Reznikov <pashka.reznikov@gmail.com>",

doc/CHANGES.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ Change log
55
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
66
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
77

8-
- [v0.5.5-dev (upcoming changes)](#v055-dev-upcoming-changes)
8+
- [v0.6.0-dev (upcoming changes)](#v060-dev-upcoming-changes)
9+
- [v0.6.0 (2019-12-24)](#v060-2019-12-24)
910
- [v0.5.5 (2019-11-27)](#v055-2019-11-27)
1011
- [v0.5.4 (2019-11-26)](#v054-2019-11-26)
1112
- [v0.5.3 (2019-11-20)](#v053-2019-11-20)
@@ -25,7 +26,11 @@ Change log
2526

2627
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2728

28-
## v0.5.5-dev (upcoming changes)
29+
## v0.6.0-dev (upcoming changes)
30+
31+
- TBD
32+
33+
## v0.6.0 (2019-12-24)
2934

3035
- add `float(val)` to set/get the grid float mode, which will relayout [#1088](https://github.com/gridstack/gridstack.js/pull/1088)
3136
- add `compact()` to reclaim any empty space and relayout grid items [#1101](https://github.com/gridstack/gridstack.js/pull/1101)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack",
3-
"version": "0.5.5-dev",
3+
"version": "0.6.0",
44
"description": "gridstack.js is a jQuery plugin for widget layout",
55
"main": "dist/gridstack.js",
66
"repository": {

src/gridstack-poly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** gridstack.js 0.5.5-dev - IE and older browsers Polyfills for this library @preserve*/
1+
/** gridstack.js 0.6.0 - IE and older browsers Polyfills for this library @preserve*/
22
/**
33
* https://gridstackjs.com/
44
* (c) 2019 Alain Dumesny

src/gridstack.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for Gridstack 0.5.5-dev
1+
// Type definitions for Gridstack 0.6.0
22
// Project: https://gridstackjs.com/
33
// Definitions by: Pascal Senn <https://github.com/PascalSenn>
44
// Ricky Blankenaufulland <https://github.com/ZoolWay>

src/gridstack.jQueryUI.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** gridstack.js 0.5.5-dev - JQuery UI Drag&Drop plugin @preserve */
1+
/** gridstack.js 0.6.0 - JQuery UI Drag&Drop plugin @preserve */
22
/**
33
* https://gridstackjs.com/
44
* (c) 2014-2019 Dylan Weiss, Alain Dumesny, Pavel Reznikov

src/gridstack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.js 0.5.5-dev
2+
* gridstack.js 0.6.0
33
* https://gridstackjs.com/
44
* (c) 2014-2019 Dylan Weiss, Alain Dumesny, Pavel Reznikov
55
* gridstack.js may be freely distributed under the MIT license.

0 commit comments

Comments
 (0)