Skip to content

Commit e8eaa2b

Browse files
authored
Bump version number to 0.8.0 (#718)
Bump the version number for the release, last minute actions and docs fixes [ committed by @MattToast ] [ reviewed by @ashao ]
1 parent 7c28d5b commit e8eaa2b

File tree

13 files changed

+21
-19
lines changed

13 files changed

+21
-19
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
CIBW_ENVIRONMENT_MACOS: PATH="$(brew --prefix)/opt/make/libexec/gnubin:$PATH"
8585
MACOSX_DEPLOYMENT_TARGET: "10.09"
8686

87-
- uses: actions/upload-artifact@v2
87+
- uses: actions/upload-artifact@v3
8888
with:
8989
path: ./wheelhouse/*.whl
9090

@@ -105,7 +105,7 @@ jobs:
105105
python -m pip install cmake>=3.13
106106
python setup.py sdist
107107
108-
- uses: actions/upload-artifact@v2
108+
- uses: actions/upload-artifact@v3
109109
with:
110110
path: dist/*.tar.gz
111111

@@ -114,7 +114,7 @@ jobs:
114114
needs: [build_wheels, build_sdist]
115115
runs-on: ubuntu-latest
116116
steps:
117-
- uses: actions/download-artifact@v2
117+
- uses: actions/download-artifact@v3
118118
with:
119119
name: artifact
120120
path: dist

.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.7.0
26-
date: 2024-05-14
25+
version: 0.8.0
26+
date: 2024-09-25
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.7.0)
153+
# help: tutorials-prod - Build and start a docker container to run the tutorials (v0.8.0)
154154
.PHONY: tutorials-prod
155155
tutorials-prod:
156156
@docker compose build tutorials-prod
157-
@docker run -p 8888:8888 smartsim-tutorials:v0.7.0
157+
@docker run -p 8888:8888 smartsim-tutorials:v0.8.0
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.7.0 (stable)",
4+
"0.8.0 (stable)",
5+
"0.7.0",
56
"0.6.2",
67
"0.6.1",
78
"0.6.0",
@@ -15,6 +16,7 @@
1516
"version_urls": [
1617
"https://www.craylabs.org/develop/overview.html",
1718
"https://www.craylabs.org/docs/overview.html",
19+
"https://www.craylabs.org/docs/versions/0.7.0/overview.html",
1820
"https://www.craylabs.org/docs/versions/0.6.2/overview.html",
1921
"https://www.craylabs.org/docs/versions/0.6.1/overview.html",
2022
"https://www.craylabs.org/docs/versions/0.6.0/overview.html",

doc/changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Jump to:
99

1010
## SmartSim
1111

12-
### Development branch
12+
### 0.8.0
1313

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

1616
Description
1717

doc/conf.py

Lines changed: 1 addition & 1 deletion
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.7.0"
32+
version = "0.8.0"
3333

3434
# The full version, including alpha/beta/rc tags
3535
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.7.0
22+
export ENV_NAME=smartsim-0.8.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/

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ services:
1414
- "8888:8888"
1515

1616
tutorials-prod:
17-
image: smartsim-tutorials:v0.7.0
17+
image: smartsim-tutorials:v0.8.0
1818
build:
1919
context: .
2020
dockerfile: ./docker/prod/Dockerfile
2121
ports:
22-
- "8888:8888"
22+
- "8888:8888"

docker/dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ COPY . /home/craylabs/SmartSim
5050
RUN chown craylabs:root -R SmartSim
5151
USER craylabs
5252

53-
RUN cd SmartSim && SMARTSIM_SUFFIX=dev python -m pip install .[ml]
53+
RUN cd SmartSim && SMARTSIM_SUFFIX=dev python -m pip install .
5454

5555
RUN export PATH=/home/craylabs/.local/bin:$PATH && \
5656
echo "export PATH=/home/craylabs/.local/bin:$PATH" >> /home/craylabs/.bashrc && \

docker/prod-cuda11/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86
5252

5353
# Install SmartSim and SmartRedis
5454
RUN pip install git+https://github.com/CrayLabs/SmartRedis.git && \
55-
pip install "smartsim[ml] @ git+https://github.com/CrayLabs/SmartSim.git"
55+
pip install "smartsim @ git+https://github.com/CrayLabs/SmartSim.git"
5656

5757
ENV CUDA_HOME="/usr/local/cuda/"
5858
ENV PATH="${PATH}:${CUDA_HOME}/bin"

0 commit comments

Comments
 (0)