Skip to content

Commit ac80685

Browse files
authored
Update version number to 0.7.0 (#583)
Update version to 0.7.0 and SmartRedis's version to 0.5.3 [ committed by @al-rigazzi ] [ reviewed by @amandarichardsonn ]
1 parent 4e7302e commit ac80685

File tree

9 files changed

+15
-13
lines changed

9 files changed

+15
-13
lines changed

Diff for: .wci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
language: Python
2323

2424
release:
25-
version: 0.6.2
26-
date: 2024-02-16
25+
version: 0.7.0
26+
date: 2024-05-14
2727

2828
documentation:
2929
general: https://www.craylabs.org/docs/overview.html

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ tutorials-dev:
150150
@docker compose build tutorials-dev
151151
@docker run -p 8888:8888 smartsim-tutorials:dev-latest
152152

153-
# help: tutorials-prod - Build and start a docker container to run the tutorials (v0.6.2)
153+
# help: tutorials-prod - Build and start a docker container to run the tutorials (v0.7.0)
154154
.PHONY: tutorials-prod
155155
tutorials-prod:
156156
@docker compose build tutorials-prod
157-
@docker run -p 8888:8888 smartsim-tutorials:v0.6.2
157+
@docker run -p 8888:8888 smartsim-tutorials:v0.7.0
158158

159159

160160
# help:

Diff for: doc/_static/version_names.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"version_names":[
33
"develop (unstable)",
4-
"0.6.2 (stable)",
4+
"0.7.0 (stable)",
5+
"0.6.2",
56
"0.6.1",
67
"0.6.0",
78
"0.5.1",
@@ -14,6 +15,7 @@
1415
"version_urls": [
1516
"https://www.craylabs.org/develop/overview.html",
1617
"https://www.craylabs.org/docs/overview.html",
18+
"https://www.craylabs.org/docs/versions/0.6.2/overview.html",
1719
"https://www.craylabs.org/docs/versions/0.6.1/overview.html",
1820
"https://www.craylabs.org/docs/versions/0.6.0/overview.html",
1921
"https://www.craylabs.org/docs/versions/0.5.1/overview.html",

Diff for: doc/changelog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Jump to:
99

1010
## SmartSim
1111

12-
### Development branch
12+
### 0.7.0
1313

14-
To be released at some future point in time
14+
Released on 14 May, 2024
1515

1616
Description
1717

Diff for: doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import smartsim
3030
version = smartsim.__version__
3131
except ImportError:
32-
version = "0.6.2"
32+
version = "0.7.0"
3333

3434
# The full version, including alpha/beta/rc tags
3535
release = version

Diff for: doc/installation_instructions/platform/olcf-summit.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ into problems.
1919
.. code-block:: bash
2020
2121
# setup Python and build environment
22-
export ENV_NAME=smartsim-0.6.2
22+
export ENV_NAME=smartsim-0.7.0
2323
git clone https://github.com/CrayLabs/SmartRedis.git smartredis
2424
git clone https://github.com/CrayLabs/SmartSim.git smartsim
2525
conda config --prepend channels https://ftp.osuosl.org/pub/open-ce/1.6.1/

Diff for: docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
- "8888:8888"
1919

2020
tutorials-prod:
21-
image: smartsim-tutorials:v0.6.2
21+
image: smartsim-tutorials:v0.7.0
2222
build:
2323
context: .
2424
dockerfile: ./docker/prod/Dockerfile

Diff for: docker/prod/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ COPY --chown=craylabs:root ./tutorials/ /home/craylabs/tutorials/
4646
USER craylabs
4747
RUN export PATH=/home/craylabs/.local/bin:$PATH && \
4848
echo "export PATH=/home/craylabs/.local/bin:$PATH" >> /home/craylabs/.bashrc && \
49-
python -m pip install smartsim[ml]==0.6.2 jupyter jupyterlab matplotlib && \
49+
python -m pip install smartsim[ml]==0.7.0 jupyter jupyterlab matplotlib && \
5050
smart build --device cpu -v && \
5151
chown craylabs:root -R /home/craylabs/.local && \
5252
rm -rf ~/.cache/pip

Diff for: smartsim/_core/_install/buildenv.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ class Versioner:
270270
PYTHON_MIN = Version_("3.9.0")
271271

272272
# Versions
273-
SMARTSIM = Version_(get_env("SMARTSIM_VERSION", "0.6.2"))
274-
SMARTREDIS = Version_(get_env("SMARTREDIS_VERSION", "0.5.2"))
273+
SMARTSIM = Version_(get_env("SMARTSIM_VERSION", "0.7.0"))
274+
SMARTREDIS = Version_(get_env("SMARTREDIS_VERSION", "0.5.3"))
275275
SMARTSIM_SUFFIX = get_env("SMARTSIM_SUFFIX", "")
276276

277277
# Redis

0 commit comments

Comments
 (0)