Skip to content

Commit 3f97fb6

Browse files
committed
Update tag calver dates
1 parent 09df4f7 commit 3f97fb6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/tutorials/create_beamline.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ You can now give your repository a version tag like this:
104104

105105
```bash
106106
# open a terminal in vscode: Menu -> Terminal -> New Terminal
107-
git tag 2024.2.1
108-
git push origin 2024.2.1
107+
git tag 2024.3.1
108+
git push origin 2024.3.1
109109
```
110110

111111
We use `CalVer` version numbers for beamline repositories and Generic IOCs.
@@ -116,7 +116,7 @@ CalVer is described here: <https://calver.org/> and is used where semantic
116116
versioning is not appropriate because the repository contains a mix of
117117
dependencies and does not have a clear API.
118118

119-
Note that 2024.2.1 represents the time that this tutorial was last updated.
119+
Note that 2024.3.1 represents the time that this tutorial was last updated.
120120
For completeness you could use the current year and month instead. You
121121
are also free to choose your own versioning scheme as this is not enforced by
122122
any of the epics-containers tools.

docs/tutorials/deploy_example.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ You can now see the beta IOC instance running with:
114114
<pre>$ ec ps
115115
| name | version | running | restarts | deployed |
116116
|------------------|---------------|---------|----------|---------------------|
117-
| bl01t-ea-test-01 | 2024.2.8e8b-b | true | 0 | 2024-02-19 10:08:15 |</pre>
117+
| bl01t-ea-test-01 | 2024.3.8e8b-b | true | 0 | 2024-03-19 10:08:15 |</pre>
118118

119119
At the end of the last tutorial we tagged the beamline repository with a
120120
`CalVer` version number and pushed it up to GitHub. This means that we
@@ -126,7 +126,7 @@ available in the GitHub repository.
126126
<pre>$ ec instances bl01t-ea-test-01
127127
| version |
128128
|----------|
129-
| 2024.2.1 |
129+
| 2024.3.1 |
130130
</pre>
131131

132132
:::{note}
@@ -156,13 +156,13 @@ This command will extract the IOC instance using the tag from GitHub and deploy
156156
it to your local machine:
157157

158158
```bash
159-
$ ec deploy bl01t-ea-test-01 2024.2.1
159+
$ ec deploy bl01t-ea-test-01 2024.3.1
160160
bdbd155d437361fe88bce0faa0ddd3cd225a9026287ac5e73545aeb4ab3a67e9
161161

162162
$ ec ps -w
163163
| name | version | running | restarts | deployed | image |
164164
|------------------|----------|---------|----------|---------------------|-------------------------------------------------------------------|
165-
| bl01t-ea-test-01 | 2024.2.1 | true | 0 | 2024-02-19 11:10:53 | ghcr.io/epics-containers/ioc-adsimdetector-linux-runtime:2024.2.1 |
165+
| bl01t-ea-test-01 | 2024.3.1 | true | 0 | 2024-03-19 11:10:53 | ghcr.io/epics-containers/ioc-adsimdetector-linux-runtime:2024.2.1 |
166166
```
167167

168168
### IMPORTANT: deploy-local vs deploy

docs/tutorials/ioc_changes1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ git add .
8686
git commit -m "Added extra.db"
8787
git push
8888
# tag a new version of the beamline repo
89-
git tag 2023.11.2
90-
git push origin 2023.11.2
89+
git tag 2024.3.2
90+
git push origin 2024.3.2
9191
# deploy the new version of the IOC to the local docker / podman instance
92-
ec deploy bl01t-ea-test-02 2023.11.2
92+
ec deploy bl01t-ea-test-02 2024.3.2
9393
```
9494

9595
You can now see that the versioned IOC instance is running and loading the extra.db by looking at its log with:

0 commit comments

Comments
 (0)