Skip to content

Commit

Permalink
Merge pull request #160 from viceice/patch-1
Browse files Browse the repository at this point in the history
feat: build static msvc
  • Loading branch information
stepchowfun committed Jul 13, 2021
2 parents 8dc0dc6 + cd12c93 commit dff436f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ jobs:
rustup default 1.53.0 # [ref:rust_1_53_0]
# Build and test.
cargo build --locked --release --target x86_64-pc-windows-msvc
RUSTFLAGS='--codegen target-feature=+crt-static' cargo build \
--locked \
--release \
--target x86_64-pc-windows-msvc
NO_COLOR=true cargo test --locked # [ref:colorless_tests]
- uses: actions/upload-artifact@v2
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.19.0] - 2021-07-13

### Changed
- Windows binary is now static linked, so no msvc libaries are required.

## [0.18.1] - 2021-07-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "docuum"
version = "0.18.1"
version = "0.19.0"
authors = ["Stephan Boyer <stephan@stephanboyer.com>"]
edition = "2018"
description = "LRU eviction of Docker images."
Expand Down

0 comments on commit dff436f

Please sign in to comment.