Skip to content
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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,30 @@ SPDX-License-Identifier: Apache-2.0

All notable changes to this project will be documented in this file.

## [1.0.0] - 2025-04-24

This version sets a contract to follow a Rust-style semver versioning
scheme. Future breaking changes will always be accompanied by a new
major release.

This does not mean that there will be no breaking changes, or that
particular care will be taken to avoid them.

The following are the user-visible changes for this release:

### Features

- [**breaking**] Gate all dependency-based features behind features
- *(config)* Add a generic configuration parsing function

### Documentation

- Improve docs, fix formatting

### Miscellaneous Tasks

- [**breaking**] Relicense to Apache-2.0

## [0.2.2] - 2025-03-20

### Features
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.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[package]
name = "famedly_rust_utils"
description = "Various rust utility functions and types"
version = "0.2.2"
version = "1.0.0"
authors = []
edition = "2021"
resolver = "2"
Expand Down Expand Up @@ -37,7 +37,7 @@ reqwest = ["dep:reqwest", "dep:thiserror"]
time = ["dep:time"]
schemars = ["dep:schemars", "schemars/url"]
serde = ["dep:serde"]
base_url = ["dep:url", "dep:thiserror"]
base_url = ["dep:url", "dep:thiserror", "dep:serde"]

[lints.rust]
dead_code = "warn"
Expand Down
Loading