Skip to content

Commit

Permalink
Merge pull request #212 from nyurik/cifix
Browse files Browse the repository at this point in the history
fix ci semver compat, enable in branches
  • Loading branch information
danielrh authored May 27, 2024
2 parents 8606c1f + 3d81cd9 commit f58b2a6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Rust

on:
push:
branches: [ main, master ]
push: { } # Since the primary repo has no CI, every fork must do the CI work in every branch
# push:
# branches: [ main, master ]
pull_request:
branches: [ main, master ]
release:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["compression", "no-std"]
readme = "README.md"
autobins = false
edition = "2015"
rust-version = "1.56.0"
rust-version = "1.59.0"

[[bin]]
doc = false
Expand Down
4 changes: 4 additions & 0 deletions src/enc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ mod weights;
pub mod worker_pool;
pub mod writer;

// FIXME: Remove this in 7.0
#[deprecated(note = "Leaving this here to avoid breaking 6.0 compatibility.")]
pub mod fast_log {}

pub use alloc::{AllocatedStackMemory, Allocator, SliceWrapper, SliceWrapperMut, StackAllocator};
#[cfg(feature = "std")]
use std::io;
Expand Down

0 comments on commit f58b2a6

Please sign in to comment.