Skip to content

Commit 5444927

Browse files
authored
Hot Fix: bump dependency version (#493)
A critical performance concern was identified and addressed in SmartRedis. A patch fix was deployed, and SmartSim was updated to ensure users do not inadvertently pull the unpatched version of SmartRedis. [ committed by @MattToast ] [ reviewed by @ashao ]
1 parent 9c043d2 commit 5444927

8 files changed

Lines changed: 34 additions & 10 deletions

File tree

.wci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
language: Python
2323

2424
release:
25-
version: 0.6.1
26-
date: 2024-02-15
25+
version: 0.6.2
26+
date: 2024-02-16
2727

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

Makefile

Lines changed: 2 additions & 2 deletions
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.1)
153+
# help: tutorials-prod - Build and start a docker container to run the tutorials (v0.6.2)
154154
.PHONY: tutorials-prod
155155
tutorials-prod:
156156
@docker compose build tutorials-prod
157-
@docker run -p 8888:8888 smartsim-tutorials:v0.6.1
157+
@docker run -p 8888:8888 smartsim-tutorials:v0.6.2
158158

159159

160160
# help:

doc/_static/version_names.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"version_names":[
33
"develop (unstable)",
4-
"0.6.1 (stable)",
4+
"0.6.2 (stable)",
5+
"0.6.1",
56
"0.6.0",
67
"0.5.1",
78
"0.5.0",
@@ -13,6 +14,7 @@
1314
"version_urls": [
1415
"https://www.craylabs.org/develop/overview.html",
1516
"https://www.craylabs.org/docs/overview.html",
17+
"https://www.craylabs.org/docs/versions/0.6.1/overview.html",
1618
"https://www.craylabs.org/docs/versions/0.6.0/overview.html",
1719
"https://www.craylabs.org/docs/versions/0.5.1/overview.html",
1820
"https://www.craylabs.org/docs/versions/0.5.0/overview.html",

doc/changelog.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,28 @@ Jump to :ref:`SmartRedis Changelog <sr_changelog>`
1111
SmartSim
1212
========
1313

14+
15+
16+
0.6.2
17+
-----
18+
19+
Released on 16 February, 2024
20+
21+
Description
22+
23+
- Patch SmartSim dependency version
24+
25+
26+
Detailed Notes
27+
28+
- A critical performance concern was identified and addressed in SmartRedis. A
29+
patch fix was deployed, and SmartSim was updated to ensure users do not
30+
inadvertently pull the unpatched version of SmartRedis. (SmartSim-PR493_)
31+
32+
33+
.. _SmartSim-PR493: https://github.com/CrayLabs/SmartSim/pull/493
34+
35+
1436
0.6.1
1537
-----
1638

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import smartsim
2727
version = smartsim.__version__
2828
except ImportError:
29-
version = "0.6.1"
29+
version = "0.6.2"
3030

3131
# The full version, including alpha/beta/rc tags
3232
release = version

doc/installation_instructions/platform/olcf-summit.rst

Lines changed: 1 addition & 1 deletion
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.1
22+
export ENV_NAME=smartsim-0.6.2
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/

docker/prod/Dockerfile

Lines changed: 1 addition & 1 deletion
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.1 jupyter jupyterlab matplotlib && \
49+
python -m pip install smartsim[ml]==0.6.2 jupyter jupyterlab matplotlib && \
5050
smart build --device cpu -v && \
5151
chown craylabs:root -R /home/craylabs/.local && \
5252
rm -rf ~/.cache/pip

smartsim/_core/_install/buildenv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ class Versioner:
270270
PYTHON_MIN = Version_("3.8.0")
271271

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

277277
# Redis

0 commit comments

Comments
 (0)