Skip to content

Commit

Permalink
0.1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
saviorand committed Sep 14, 2024
1 parent 1dface7 commit 313595b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ jobs:
- name: Get the version
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT


- uses: actions/download-artifact@v4
with:
name: lightbug_http-package

- name: Upload package to release
uses: svenstaro/upload-release-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Once you have a Mojo project set up locally,
2. Add `lightbug_http` as a dependency:
```toml
[dependencies]
lightbug_http = ">=0.1.2"
lightbug_http = ">=0.1.3"
```
3. Run `magic install` at the root of your project, where `mojoproject.toml` is located
4. Lightbug should now be installed as a dependency. You can import all the default imports at once, e.g:
Expand Down
2 changes: 1 addition & 1 deletion mojoproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels = ["conda-forge", "https://conda.modular.com/max", "https://repo.prefix
description = "Simple and fast HTTP framework for Mojo!"
name = "lightbug_http"
platforms = ["osx-arm64", "linux-64"]
version = "0.1.2"
version = "0.1.3"

[tasks]
build = { cmd = "rattler-build build --recipe recipes -c https://conda.modular.com/max -c conda-forge --skip-existing=all", env = {MODULAR_MOJO_IMPORT_PATH = "$CONDA_PREFIX/lib/mojo"} }
Expand Down
2 changes: 1 addition & 1 deletion recipes/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ context:

package:
name: "lightbug_http"
version: 0.1.2
version: 0.1.3

source:
- path: ../lightbug_http
Expand Down

0 comments on commit 313595b

Please sign in to comment.