Skip to content

Commit

Permalink
v0.3.13
Browse files Browse the repository at this point in the history
Also templated the version so it needs to be updated only in Hugo
config.
  • Loading branch information
hifi committed Dec 17, 2023
1 parent dd957a0 commit ab93656
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion content/guides/windows/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ PS C:\> Get-EventLog -LogName Application -Source Litestream
----- ---- --------- ------ ---------- -------
8894 Jan 01 00:00 Information Litestream 1 replicating to: name="s3" type="s3" bucket="dev...
8892 Jan 01 00:00 Information Litestream 1 initialized db: C:\my.db...
8891 Jan 01 00:00 Information Litestream 1 litestream v0.3.11...
8891 Jan 01 00:00 Information Litestream 1 litestream v{{< version.inline >}}{{ .Site.Param "litestreamVersion" }}{{< /version.inline >}}...
8890 Jan 01 00:00 Information Litestream 1 Litestream service starting...
```

Expand Down
4 changes: 2 additions & 2 deletions content/install/debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ service with a few commands. First, download the latest `.deb` file to your
local machine:

```sh
wget https://github.com/benbjohnson/litestream/releases/download/v0.3.11/litestream-v0.3.11-linux-amd64.deb
wget https://github.com/benbjohnson/litestream/releases/download/v{{< version.inline >}}{{ .Site.Param "litestreamVersion" }}{{< /version.inline >}}/litestream-v{{< version.inline />}}-linux-amd64.deb
```

Then install it using `dpkg`:

```sh
sudo dpkg -i litestream-v0.3.11-linux-amd64.deb
sudo dpkg -i litestream-v{{< version.inline />}}-linux-amd64.deb
```

You should now be able to run `litestream version` to verify it is installed.
Expand Down
2 changes: 1 addition & 1 deletion data/litestream.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "litestream",
"version": "0.3.11"
"version": "0.3.13"
}
4 changes: 4 additions & 0 deletions hugo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
params:
litestreamVersion: 0.3.13
security:
enableInlineShortcodes: true

0 comments on commit ab93656

Please sign in to comment.