Skip to content

Commit

Permalink
prep patch release 🥕 (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksund authored Mar 20, 2023
1 parent b8b33d3 commit 2db196e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
13 changes: 6 additions & 7 deletions docs/change_log.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,7 @@ There is one key exception to the rules above -- and that is with `MAJOR`=0 rele
**Fixes**
-->

**Refactors**

- `simmate.website.third_parties` module is now the `data_explorer` module. With this, you can now specify custom database tables to appear in the "Data" section for the web UI

**Fixes**

- fix pickling error for `workflow.run_cloud` command
- no new changes have been merged into the `main` branch yet

--------------------------------------------------------------------------------

Expand Down Expand Up @@ -123,6 +117,11 @@ of empty sites
- from `from_directory` method of the `Relaxation` database class
- fix HSE bandstructure and DOS kpoint file writing

**0.13.2 (2023.03.20)**

- fix pickling error for `workflow.run_cloud` command
- `simmate.website.third_parties` module is now the `data_explorer` module. With this, you can now specify custom database tables to appear in the "Data" section for the web UI

--------------------------------------------------------------------------------

## v0.12.0 (2022.10.23)
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing/maintainer_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To make a new release, you must follow these steps:

3. Ensure all tests pass when using the pre-built database. Otherwise, you need to (i) make a new one using the commands below, (ii) rename your db file to something like `prebuild-2022-07-05.sqlite3`, (iii) compress the db file to a zip file, (iv) upload it to the Simmate CDN, and (iii) update the `archive_filename` in `simmate.database.third_parties.utilites.load_default_sqlite3_build`.
``` bash
simmate database reset --confirm-delete --use-prebuilt false
simmate database reset --confirm-delete --no-use-prebuilt
simmate database load-remote-archives
```

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ name="simmate"
# Versions should comply with PEP 440:
# https://www.python.org/dev/peps/pep-0440/
# https://semver.org/
version="0.13.1"
version="0.13.2"

# Maintainer info
authors = [{name = "Jack D. Sundberg", email = "[email protected]"}]
Expand Down
2 changes: 1 addition & 1 deletion src/simmate/database/third_parties/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def load_default_sqlite3_build():
"""
# DEV NOTE: the prebuild filename is updated when new versions call for it.
# Therefore, this value hardcoded specifically for each simmate version
archive_filename = "prebuild-2023-03-06.zip"
archive_filename = "prebuild-2023-03-20.zip"

# Make sure the backend is using SQLite3 as this is the only allowed format
assert DATABASES["default"]["ENGINE"] == "django.db.backends.sqlite3"
Expand Down

0 comments on commit 2db196e

Please sign in to comment.