Skip to content

Switched to Apache License

Compare
Choose a tag to compare
@folkengine folkengine released this 04 Mar 19:44
· 18 commits to main since this release
81074cc

Updates this release:

  • Merged in "Added insert() API to cards.rs" PR
  • Updated GitHub Actions
  • Switched to Apache 2.0 License
  • Fixed badges
  • Updated Fluent Templates to version 0.7.1.
  • Updated RSTest to version 0.16.0.
  • Updated minimum Rust version to 1.63.

Note: Was unable to update Fluent Templates to version 0.8.0. Generates this error:

error[E0308]: mismatched types
  --> src/fluent/named.rs:29:9
   |
27 |     fn fluent_value(&self, key_section: &str, lid: &LanguageIdentifier) -> std::string::String {
   |                                                                            ------------------- expected `std::string::String` because of return type
28 |         let id = format!("{}-{}", self.name(), key_section);
29 |         LOCALES.lookup(lid, id.as_str())
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `std::string::String`, found enum `Option`
   |
   = note: expected struct `std::string::String`
                found enum `Option<std::string::String>`