Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Release 'safe harbor' versions of Fluent workspace crates #349

Merged
merged 1 commit into from
May 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions fluent-bundle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@

- …

## fluent-bundle 0.15.3 (March 16, 2024)
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers
- Implement `From<&String>` for `FluentValue`
- Add `FluentValue.into_string` to prevent String clone
- Fix `FluentValue::try_number` accepting numbers
- Allow optional arguments on `FluentValue`
- Fix behavior of `FluentArgs::set`
- Resolve function instead in `impl ResolveValue`
- Add type alias for concurrent `FluentBundle`
- Fix `FluentBundle::format_pattern` lifetimes
- Workspace: Update to Rust 2021
- Workspace: Add various missing documentation and fix typos and links
- Workspace: Cleanup meta-data using workspaces, use SPDX licenses, etc.
- Workspace: Apply rustfmt and clippy lint fixes

## fluent-bundle 0.15.2 (October 25, 2021)
- Bump `self_cell` to 0.10.

Expand Down
2 changes: 1 addition & 1 deletion fluent-bundle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
A localization system designed to unleash the entire expressive power of
natural language translations.
"""
version = "0.15.2"
version = "0.15.3"
edition = "2021"
authors = [
"Zibi Braniecki <[email protected]>",
Expand Down
8 changes: 8 additions & 0 deletions fluent-fallback/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

- …

## fluent-fallback 0.7.1 (March 16, 2024)
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers
- Migrate to `pin_cell` crate
- Workspace: Update to Rust 2021
- Workspace: Add various missing documentation and fix typos and links
- Workspace: Cleanup meta-data using workspaces, use SPDX licenses, etc.
- Workspace: Apply rustfmt and clippy lint fixes

## fluent-fallback 0.7.0 (Nov 9, 2022)
- The `ResourceId`s are now stored as a `HashSet` rather than as a Vec. Adding a
duplicate `ResourceId` is now a noop.
Expand Down
2 changes: 1 addition & 1 deletion fluent-fallback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
High-level abstraction model for managing localization resources
and runtime localization lifecycle.
"""
version = "0.7.0"
version = "0.7.1"
edition = "2021"
authors = [
"Zibi Braniecki <[email protected]>",
Expand Down
8 changes: 8 additions & 0 deletions fluent-pseudo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

- …

## fluent-pseudo 0.3.2 (March 16, 2024)
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers
- Allow optional resources, adds `ResourceId` struct
- Workspace: Update to Rust 2021
- Workspace: Add various missing documentation and fix typos and links
- Workspace: Cleanup meta-data using workspaces, use SPDX licenses, etc.
- Workspace: Apply rustfmt and clippy lint fixes

## fluent-pseudo 0.3.1 (July 21, 2021)
- Update README to document the API changes in 0.3.0.

Expand Down
2 changes: 1 addition & 1 deletion fluent-pseudo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fluent-pseudo"
description = """
Pseudolocalization transformation API for use with Project Fluent API.
"""
version = "0.3.1"
version = "0.3.2"
edition = "2021"
authors = [
"Zibi Braniecki <[email protected]>",
Expand Down
8 changes: 8 additions & 0 deletions fluent-resmgr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

- …

## fluent-resmgr 0.0.7 (March 16, 2024)
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers
- Return a result for `ResourceManager::get_resource`
- Workspace: Update to Rust 2021
- Workspace: Add various missing documentation and fix typos and links
- Workspace: Cleanup meta-data using workspaces, use SPDX licenses, etc.
- Workspace: Apply rustfmt and clippy lint fixes

## fluent-resmgr 0.0.6 (Nov 9, 2022)
- Update `fluent-fallback` to 0.7.0.

Expand Down
2 changes: 1 addition & 1 deletion fluent-resmgr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fluent-resmgr"
description = """
Resource manager for Fluent localization resources.
"""
version = "0.0.6"
version = "0.0.7"
authors = [
"Zibi Braniecki <[email protected]>",
"Staś Małolepszy <[email protected]>"
Expand Down
10 changes: 10 additions & 0 deletions fluent-syntax/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
- Add module `serializer`.
- …

## fluent-syntax 0.11.1 (March 16, 2024)
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers
- Create generic ftl serializer `fluent_syntax::serializer`
- Fix crash when parsing multiline CRLF comment
- Treat tab as text, not whitespace, adds `parser::matches_fluent_ws` function
- Workspace: Update to Rust 2021
- Workspace: Add various missing documentation and fix typos and links
- Workspace: Cleanup meta-data using workspaces, use SPDX licenses, etc.
- Workspace: Apply rustfmt and clippy lint fixes

## fluent-syntax 0.11.0 (February 9, 2021)
- Document the crate.
- Switch to use `thiserror` for Error annotations.
Expand Down
2 changes: 1 addition & 1 deletion fluent-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fluent-syntax"
description = """
Parser/Serializer tools for Fluent Syntax.
"""
version = "0.11.0"
version = "0.11.1"
edition = "2021"
authors = [
"Zibi Braniecki <[email protected]>",
Expand Down
7 changes: 7 additions & 0 deletions fluent-testing/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

- …

## fluent-testing 0.0.4 (March 16, 2024)
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers
- Workspace: Update to Rust 2021
- Workspace: Add various missing documentation and fix typos and links
- Workspace: Cleanup meta-data using workspaces, use SPDX licenses, etc.
- Workspace: Apply rustfmt and clippy lint fixes

## fluent-resmgr 0.0.3 (Nov 9, 2022)
- Update `fluent-fallback` to 0.7.0.

Expand Down
2 changes: 1 addition & 1 deletion fluent-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fluent-testing"
description = """
A collection of mock scenarios for testing fluent-rs components.
"""
version = "0.0.3"
version = "0.0.4"
authors = [
"Zibi Braniecki <[email protected]>",
"Erik Nordin <[email protected]>"
Expand Down
9 changes: 9 additions & 0 deletions fluent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@

- …

## fluent 0.16.1 (March 16, 2024)
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers
- Make `fluent_args` macro work with trailing comma
- Fix `FluentValue::try_number` accepting numbers
- Workspace: Update to Rust 2021
- Workspace: Add various missing documentation and fix typos and links
- Workspace: Cleanup meta-data using workspaces, use SPDX licenses, etc.
- Workspace: Apply rustfmt and clippy lint fixes

## fluent 0.16.0 (July 29, 2021)
- Update `fluent-pseudo` to 0.3.

Expand Down
2 changes: 1 addition & 1 deletion fluent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
A localization system designed to unleash the entire expressive power of
natural language translations.
"""
version = "0.16.0"
version = "0.16.1"
edition = "2021"
authors = [
"Zibi Braniecki <[email protected]>",
Expand Down
7 changes: 7 additions & 0 deletions intl-memoizer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

- …

## intl-memoizer 0.5.2 (March 16, 2024)
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers
- Workspace: Update to Rust 2021
- Workspace: Add various missing documentation and fix typos and links
- Workspace: Cleanup meta-data using workspaces, use SPDX licenses, etc.
- Workspace: Apply rustfmt and clippy lint fixes

## intl-memoizer 0.5.1 (January 22, 2021)
- Update `type-map` to 0.4.

Expand Down
2 changes: 1 addition & 1 deletion intl-memoizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
A memoizer specifically tailored for storing lazy-initialized
intl formatters.
"""
version = "0.5.1"
version = "0.5.2"
edition = "2021"
authors = [
"Zibi Braniecki <[email protected]>",
Expand Down