diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a6fd9b..9b9d1e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: diff --git a/README.md b/README.md index 780affa..9b75aa0 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/mojoproject.toml b/mojoproject.toml index 0539484..bf7ab93 100644 --- a/mojoproject.toml +++ b/mojoproject.toml @@ -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"} } diff --git a/recipes/recipe.yaml b/recipes/recipe.yaml index 1bf1b91..6cd2f09 100644 --- a/recipes/recipe.yaml +++ b/recipes/recipe.yaml @@ -5,7 +5,7 @@ context: package: name: "lightbug_http" - version: 0.1.2 + version: 0.1.3 source: - path: ../lightbug_http