Skip to content

Commit 5466286

Browse files
committed
v31.0.1
1 parent 26132b5 commit 5466286

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to `dash-ag-grid` will be documented in this file.
44
This project adheres to [Semantic Versioning](https://semver.org/).
55
Links "DE#nnn" prior to version 2.0 point to the Dash Enterprise closed-source Dash AG Grid repo
66

7+
## [31.0.1] - 2024-02-07
8+
9+
- [#266](https://github.com/plotly/dash-ag-grid/pull/266) Updated README
10+
711
## [31.0.0] - 2024-02-01
812

913
### Added

CONTRIBUTING.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ In development mode, Python uses the files in this directory when you import the
2727

2828
### Create a production build
2929

30+
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:
31+
```
32+
npm i
33+
npm run build
34+
```
35+
3036
Create source and wheel distributions in the generated `dist/` folder, after emptying out any previous builds:
3137
```
3238
rm -rf dist build
@@ -45,4 +51,4 @@ npm pack
4551
Then publish:
4652
```
4753
npm publish
48-
```
54+
```

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-ag-grid",
3-
"version": "31.0.0",
3+
"version": "31.0.1",
44
"description": "Dash wrapper around AG Grid, the best interactive data grid for the web.",
55
"repository": {
66
"type": "git",

test_version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
errors.append(f"{pk} - {package['dependencies'][pk]} doesnt equal other version of {prev_version},"
1717
f" if AG Grid becomes out of sync with itself, disable this line: `test_version.py:16-17`")
1818
prev_version = package['dependencies'][pk]
19-
assert re.match("^\d+[.]\d+[.]\d+$", package['dependencies'][pk])
19+
assert re.match(r"^\d+[.]\d+[.]\d+$", package['dependencies'][pk])
2020
except:
2121
errors.append(f"{pk} - {package['dependencies'][pk]}")
2222
if errors:
2323
message = "not a valid version of AG-Grid; grid version must be a valid locked version of the grid," \
2424
" to limit possible unexpected updates and breaking changes\n"
25-
raise Exception(message + '\n'.join(errors))
25+
raise Exception(message + '\n'.join(errors))

0 commit comments

Comments
 (0)