Skip to content

Commit

Permalink
remove -alpha, add to CHANGELOG (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
leshow committed Sep 29, 2023
1 parent cb760a1 commit 44fe6c9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.10.0]

### Fixed

- dhcpv6: Fix OPTION_STATUS_CODE parsing. After a status code option, all following options will be corrupted

### Added

- add v4 options 21/24/25/34 & 62..65 & 68..77
Expand All @@ -15,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Picked more consistent name & casing for option types
- remove Domain type and just re-export trust-dns Name

## [0.9.0]

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.

18 changes: 13 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
[package]
name = "dhcproto"
version = "0.10.0-alpha"
authors = ["Ian Laidlaw <ilaidlaw@bluecatnetworks.com>", "Evan Cameron <cameron.evan@gmail.com>"]
version = "0.10.0"
authors = [
"Ian Laidlaw <ilaidlaw@bluecatnetworks.com>",
"Evan Cameron <cameron.evan@gmail.com>",
]
edition = "2021"
description = """
A DHCP parser and encoder for DHCPv4/DHCPv6. `dhcproto` aims to be a functionally complete DHCP implementation.
"""
categories = ["network-programming", "encoding","parser-implementations"]
categories = ["network-programming", "encoding", "parser-implementations"]
repository = "https://github.com/bluecatengineering/dhcproto"
keywords = ["dhcp","dhcpv4","dhcpv6"]
keywords = ["dhcp", "dhcpv4", "dhcpv6"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -24,7 +27,12 @@ ipnet = "2.5"

[features]
default = []
serde = ["dep:serde", "url/serde", "ipnet/serde", "trust-dns-proto/serde-config"]
serde = [
"dep:serde",
"url/serde",
"ipnet/serde",
"trust-dns-proto/serde-config",
]

[dev-dependencies]
criterion = "0.4.0"
Expand Down

0 comments on commit 44fe6c9

Please sign in to comment.