Skip to content

Commit

Permalink
chore(release): publish version 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Sep 19, 2023
1 parent ad85e12 commit 32bbe09
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 16 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.0.0](https://github.com/6pac/SlickGrid/compare/4.0.1...5.0.0) (2023-09-19)

### Reverts

* fix auto-scroll issue by reverting commit 5ff56e3 ([2b40409](https://github.com/6pac/SlickGrid/commit/2b4040943d451366da92d22fed1adba3d8a2e017))

# [5.0.0-alpha.9](https://github.com/6pac/SlickGrid/compare/5.0.0-alpha.8...5.0.0-alpha.9) (2023-09-19)

# [5.0.0-alpha.8](https://github.com/6pac/SlickGrid/compare/5.0.0-alpha.7...5.0.0-alpha.8) (2023-09-19)
Expand Down
4 changes: 2 additions & 2 deletions dist/browser/slick.grid.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/browser/slick.grid.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/cjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6220,7 +6220,7 @@ var SlickGrid = class {
this.options = options;
//////////////////////////////////////////////////////////////////////////////////////////////
// Public API
__publicField(this, "slickGridVersion", "5.0.0-alpha.9");
__publicField(this, "slickGridVersion", "5.0.0");
/** optional grid state clientId */
__publicField(this, "cid", "");
// Events
Expand Down Expand Up @@ -9309,7 +9309,7 @@ var SlickRemoteModel = class {
* Distributed under MIT license.
* All rights reserved.
*
* SlickGrid v5.0.0-alpha.9
* SlickGrid v5.0.0
*
* NOTES:
* Cell/row DOM manipulations are done directly bypassing JS DOM manipulation methods.
Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6117,7 +6117,7 @@ var SlickGrid = class {
this.options = options;
//////////////////////////////////////////////////////////////////////////////////////////////
// Public API
__publicField(this, "slickGridVersion", "5.0.0-alpha.9");
__publicField(this, "slickGridVersion", "5.0.0");
/** optional grid state clientId */
__publicField(this, "cid", "");
// Events
Expand Down Expand Up @@ -9291,7 +9291,7 @@ export {
* Distributed under MIT license.
* All rights reserved.
*
* SlickGrid v5.0.0-alpha.9
* SlickGrid v5.0.0
*
* NOTES:
* Cell/row DOM manipulations are done directly bypassing JS DOM manipulation methods.
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/types/slick.grid.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { BindingEventService as BindingEventService_, type SlickEditorLock, Slic
* Distributed under MIT license.
* All rights reserved.
*
* SlickGrid v5.0.0-alpha.9
* SlickGrid v5.0.0
*
* NOTES:
* Cell/row DOM manipulations are done directly bypassing JS DOM manipulation methods.
Expand Down
2 changes: 1 addition & 1 deletion dist/types/slick.grid.d.ts.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "slickgrid",
"version": "5.0.0-alpha.9",
"version": "5.0.0",
"description": "A lightning fast JavaScript grid/spreadsheet",
"exports": {
".": {
Expand Down
4 changes: 2 additions & 2 deletions src/slick.grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const Resizable = IIFE_ONLY ? Slick.Resizable : Resizable_;
* Distributed under MIT license.
* All rights reserved.
*
* SlickGrid v5.0.0-alpha.9
* SlickGrid v5.0.0
*
* NOTES:
* Cell/row DOM manipulations are done directly bypassing JS DOM manipulation methods.
Expand All @@ -133,7 +133,7 @@ interface RowCaching {
export class SlickGrid<TData = any, C extends Column<TData> = Column<TData>, O extends BaseGridOption<C> = BaseGridOption<C>> {
//////////////////////////////////////////////////////////////////////////////////////////////
// Public API
slickGridVersion = '5.0.0-alpha.9';
slickGridVersion = '5.0.0';

/** optional grid state clientId */
cid = '';
Expand Down

0 comments on commit 32bbe09

Please sign in to comment.