File tree Expand file tree Collapse file tree
installation_instructions/platform Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
155155tutorials-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:
Original file line number Diff line number Diff line change 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" ,
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" ,
Original file line number Diff line number Diff line change @@ -11,6 +11,28 @@ Jump to :ref:`SmartRedis Changelog <sr_changelog>`
1111SmartSim
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+
14360.6.1
1537-----
1638
Original file line number Diff line number Diff line change 2626 import smartsim
2727 version = smartsim .__version__
2828except ImportError :
29- version = "0.6.1 "
29+ version = "0.6.2 "
3030
3131# The full version, including alpha/beta/rc tags
3232release = version
Original file line number Diff line number Diff 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/
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ COPY --chown=craylabs:root ./tutorials/ /home/craylabs/tutorials/
4646USER craylabs
4747RUN 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments