Skip to content

Commit

Permalink
v31.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcjohnson committed Feb 7, 2024
1 parent 26132b5 commit 5466286
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to `dash-ag-grid` will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).
Links "DE#nnn" prior to version 2.0 point to the Dash Enterprise closed-source Dash AG Grid repo

## [31.0.1] - 2024-02-07

- [#266](https://github.com/plotly/dash-ag-grid/pull/266) Updated README

## [31.0.0] - 2024-02-01

### Added
Expand Down
8 changes: 7 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ In development mode, Python uses the files in this directory when you import the

### Create a production build

Update the package version is correct in `package.json` and `CHANGELOG.md` and the changelog lists all the important updates. Then reinstall (so `package-lock.json` gets the new version) and rebuild:
```
npm i
npm run build
```

Create source and wheel distributions in the generated `dist/` folder, after emptying out any previous builds:
```
rm -rf dist build
Expand All @@ -45,4 +51,4 @@ npm pack
Then publish:
```
npm publish
```
```
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": "dash-ag-grid",
"version": "31.0.0",
"version": "31.0.1",
"description": "Dash wrapper around AG Grid, the best interactive data grid for the web.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
errors.append(f"{pk} - {package['dependencies'][pk]} doesnt equal other version of {prev_version},"
f" if AG Grid becomes out of sync with itself, disable this line: `test_version.py:16-17`")
prev_version = package['dependencies'][pk]
assert re.match("^\d+[.]\d+[.]\d+$", package['dependencies'][pk])
assert re.match(r"^\d+[.]\d+[.]\d+$", package['dependencies'][pk])
except:
errors.append(f"{pk} - {package['dependencies'][pk]}")
if errors:
message = "not a valid version of AG-Grid; grid version must be a valid locked version of the grid," \
" to limit possible unexpected updates and breaking changes\n"
raise Exception(message + '\n'.join(errors))
raise Exception(message + '\n'.join(errors))

0 comments on commit 5466286

Please sign in to comment.