Skip to content

Commit 0dab53d

Browse files
authored
Merge pull request #65 from joshuanianji/lamdera-1.3.0
Update Lamdera to 1.3.0
2 parents ab511a6 + c42e280 commit 0dab53d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/lamdera/NOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Lamdera Versions
22

3-
**Latest tag is hardcoded to v1.1.0!** I'm not sure how to get the latest lamdera version automatically (without web scraping the lamdera site which won't be pretty), so currently this is the solution I have.
3+
**Latest tag is hardcoded to v1.3.0!** I'm not sure how to get the latest lamdera version automatically (without web scraping the lamdera site which won't be pretty), so currently this is the solution I have.
44

55
The installation script looks at your OS architecture and version and interpolates it into the following (simplified) command:
66
```bash
@@ -20,6 +20,7 @@ Shells: `bash`, `zsh`, `fish`
2020

2121
| Version | Notes |
2222
| ------- | ----------------------------- |
23+
| 1.1.0 | Lamdera 1.3.0 |
2324
| 1.0.1 | Fix Docs |
2425
| 1.0.0 | Support zsh/fish and refactor |
2526
| 0.0.2 | Fix typos in Docs |

src/lamdera/devcontainer-feature.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"type": "string",
1010
"proposals": [
1111
"latest",
12+
"1.3.0",
1213
"1.2.1",
1314
"1.1.0"
1415
],

src/lamdera/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ install() {
5151
# Hardcode the latest version of lamdera!!
5252
# TODO: fix this later!
5353
if [[ $VERSION == "latest" ]]; then
54-
VERSION="1.2.1"
54+
VERSION="1.3.0"
5555
fi
5656

5757
# Download and install lamdera

0 commit comments

Comments
 (0)