Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit d23db91

Browse files
authored
Merge pull request #239 from plotly/cross-platform-scripts
Change package.json scripts to work on windows and fix `__init__.py` version formatting.
2 parents 09164df + ed8e2c2 commit d23db91

File tree

5 files changed

+1953
-1598
lines changed

5 files changed

+1953
-1598
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.25.1]
6+
### Fixed
7+
- `__init__` version formatting for unpkg.
8+
59
## [0.25.0]
610
### Added
711
- `ConfirmDialog` and `ConfirmDialogProvider` components [#211](https://github.com/plotly/dash-core-components/pull/211)

dash_core_components/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
'external_url': (
3333
'https://unpkg.com/dash-core-components@{}'
3434
'/dash_core_components/bundle.js'
35-
).format('0.23.1-rc1'),
35+
).format(__version__),
3636
'namespace': 'dash_core_components'
3737
}
3838
]

dash_core_components/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.25.0'
1+
__version__ = '0.25.1'

0 commit comments

Comments
 (0)