Skip to content

Commit

Permalink
release: 0.25.0-prerelease.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mistydemeo committed Oct 31, 2024
1 parent 0136f5d commit d7f44b8
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

Nothing Yet!

# Version 0.25.0 (2024-10-31)

This release contains a few new features.

## Improvements to installer customization

We now provide two new environment variables making it possible to customize just the base URL for fetching installers. Previously, the only customization for overriding the install URL overrode the full URL, including version-specific paths, which made it difficult to use for users who were proxying or mirroring GitHub paths. These new variables are branded with your app's name. For example:

* `{app_name}_INSTALLER_GITHUB_BASE_URL`
* `{app_name}_INSTALLER_GHE_BASE_URL`

These two variables will also be supported by a new version of axoupdater in order to allow overriding the GitHub API URL.

- impl @mistydemeo [feat: allow installer domain to be overridden](feat: allow installer domain to be overridden)

## Override default glibc version

Ordinarily, dist automatically detects the version of glibc used by your `linux-gnu` builds and uses this in the installers to detect if the end user's system will be compatible. In certain specific build environments, this autodetection isn't possible, so we've introduced a feature allowing the glibc version to be manually specified in the dist configuration. If provided, this replaces the fallback version that would otherwise be used.

- impl @duckinator [Allow overriding minimum supported glibc version.](https://github.com/axodotdev/cargo-dist/pull/1496)

# Version 0.24.1 (2024-10-29)

Loosens the "cargo is broken" error reporting condition, letting us be more
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/axodotdev/cargo-dist"
homepage = "https://opensource.axo.dev/cargo-dist/"
version = "0.24.1"
version = "0.25.0-prerelease.1"

[workspace.dependencies]
# intra-workspace deps (you need to bump these versions when you cut releases too!
cargo-dist-schema = { version = "=0.24.1", path = "cargo-dist-schema" }
axoproject = { version = "=0.24.1", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }
cargo-dist-schema = { version = "=0.25.0-prerelease.1", path = "cargo-dist-schema" }
axoproject = { version = "=0.25.0-prerelease.1", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }

# first-party deps
axocli = { version = "0.2.0" }
Expand Down

0 comments on commit d7f44b8

Please sign in to comment.