Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-schievink committed Dec 8, 2019
1 parent 6291c2b commit b2307e9
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@

## Unreleased

No changes.

## [0.1.0 - 2019-12-08](https://github.com/jonas-schievink/jaylink/releases/tag/0.1.0)

Initial release.
36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jaylink"
version = "0.0.0"
version = "0.1.0"
authors = ["Jonas Schievink <[email protected]>"]
edition = "2018"
description = "Library to communicate with J-Link USB devices"
Expand All @@ -11,23 +11,6 @@ categories = ["embedded", "development-tools::debugging"]
readme = "README.md"
license = "0BSD"

[badges]
travis-ci = { repository = "jonas-schievink/jaylink" }
maintenance = { status = "actively-developed" }

[dev-dependencies]
version-sync = "0.8"
env_logger = "0.7.1"
structopt = "0.3.4"

[dependencies]
# Public
bitflags = "1.2.1"
# Private
rusb = "0.5.2"
log = "0.4.8"
byteorder = "1.3.2"

# cargo-release configuration
[package.metadata.release]
tag-message = "{{version}}"
Expand Down Expand Up @@ -58,3 +41,20 @@ replace = 'jaylink = "{{version}}"'
file = "src/lib.rs"
search = "https://docs.rs/jaylink/[a-z0-9\\.-]+"
replace = "https://docs.rs/jaylink/{{version}}"

[badges]
travis-ci = { repository = "jonas-schievink/jaylink" }
maintenance = { status = "actively-developed" }

[dev-dependencies]
version-sync = "0.8"
env_logger = "0.7.1"
structopt = "0.3.4"

[dependencies]
# Public
bitflags = "1.2.1"
# Private
rusb = "0.5.2"
log = "0.4.8"
byteorder = "1.3.2"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add an entry to your `Cargo.toml`:

```toml
[dependencies]
jaylink = "0.0.0"
jaylink = "0.1.0"
```

Check the [API Documentation](https://docs.rs/jaylink/) for how to use the
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
//!
//! The archive.org version is the most up-to-date one.
#![doc(html_root_url = "https://docs.rs/jaylink/0.0.0")]
#![doc(html_root_url = "https://docs.rs/jaylink/0.1.0")]
// Deny a few warnings in doctests, since rustdoc `allow`s many warnings by default
#![doc(test(attr(deny(unused_imports, unused_must_use))))]
#![warn(missing_debug_implementations, rust_2018_idioms)]
Expand Down

0 comments on commit b2307e9

Please sign in to comment.