Skip to content

Commit ba8694d

Browse files
committed
bump before release 1.0
1 parent 89c8872 commit ba8694d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [1.0.0] - 2022/09/05
7+
## [1.0.0] - 2022/09/04
88
### Added
9-
- Notebooks running in VSCode and Jupyter Lab now support Python callbacks and accessing
10-
selections from Python.
9+
- Notebooks running in VSCode and Jupyter Lab now support accessing selections from
10+
Python, executing Python callback functions, and filtering based on other widgets.
1111
### Changed
12-
- Callbacks can now also be `lambda` functions.
12+
- Python callbacks can now also be `lambda` functions.
1313
- If ``prerender=True``, substructure highlighting will be automatically disabled by
1414
default instead of raising an error.
1515
- When exporting a selection to a SMILES file through the GUI, the output no longer
@@ -18,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
and the back-end/Python.
1919
- When calling `grid.filter` and other filtering methods, mols2grid will now use the
2020
filtering code based on ipywidgets, except for Streamlit where it will use the older
21-
JavaScript version of the code.
21+
JavaScript version of the code to maintain compatibility.
2222
### Removed
2323
- `mapping` argument for renaming fields, replaced by `rename` in `v0.1.0`.
2424
- `mols2grid.selection`, replaced by `mols2grid.get_selection()` in `v0.1.0`.

mols2grid/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version_info = (1, 0, 0, "rc6")
1+
version_info = (1, 0, 0)
22

33
__version__ = ".".join(map(str, version_info[:3]))
44
if len(version_info) > 3:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mols2grid",
3-
"version": "1.0.0-rc6",
4-
"description": "Custom widget for mols2grid",
3+
"version": "1.0.0",
4+
"description": "Custom widget for the Python mols2grid package",
55
"keywords": [
66
"jupyter",
77
"jupyterlab",

0 commit comments

Comments
 (0)