Skip to content

Commit

Permalink
Releasing v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Feb 9, 2022
1 parent 78744e9 commit 4af9132
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## v0.3.0

### Breaking Changes

Expand Down
30 changes: 15 additions & 15 deletions nebari/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nebari"
version = "0.2.2"
version = "0.3.0"
edition = "2018"
description = "ACID-compliant database storage implementation using an append-only file format."
repository = "https://github.com/khonsulabs/nebari"
Expand All @@ -13,19 +13,19 @@ readme = "../README.md"
default = []

[dependencies]
thiserror = "1"
byteorder = "1"
flume = "0.10"
crc = "2"
once_cell = "1"
lru = "0.7"
parking_lot = "0.12"
tracing = { version = "0.1", optional = true }
num_cpus = "1.13"
backtrace = "0.3"
arc-bytes = "0.3"
thiserror = "1.0.30"
byteorder = "1.4.3"
flume = "0.10.10"
crc = "2.1.0"
once_cell = "1.9.0"
lru = "0.7.0"
parking_lot = "0.12.0"
tracing = { version = "0.1.30", optional = true }
num_cpus = "1.13.1"
backtrace = "0.3.64"
arc-bytes = "0.3.2"

[dev-dependencies]
nanorand = "0.6"
anyhow = "1"
tempfile = "3"
nanorand = "0.6.1"
anyhow = "1.0.53"
tempfile = "3.3.0"

0 comments on commit 4af9132

Please sign in to comment.