Skip to content

Commit 2d4dcc9

Browse files
committed
Prepare for 0.1.0 release
1 parent 9b2f818 commit 2d4dcc9

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 0.1.0 (November 10, 2018)
2+
3+
Initial release

Cargo.toml

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
[package]
22
name = "codegen"
3+
# When releasing to crates.io:
4+
# - Update html_root_url.
5+
# - Update CHANGELOG.md.
6+
# - Update doc URL.
7+
# - Create "v0.1.x" git tag.
38
version = "0.1.0"
9+
license = "MIT"
410
authors = ["Carl Lerche <[email protected]>"]
11+
description = "Library for generating Rust code"
12+
documentation = "https://docs.rs/codegen/0.1.0/codegen"
13+
homepage = "https://github.com/carllerche/codegen"
14+
repository = "https://github.com/carllerche/codegen"
15+
readme = "README.md"
516

617
[dependencies]
7-
indexmap = "1"
18+
indexmap = "1.0.2"

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017 Carl Lerche
1+
Copyright (c) 2018 Carl Lerche
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
//! ```
2323
2424
#![deny(warnings, missing_debug_implementations, missing_docs)]
25+
#![doc(html_root_url = "https://docs.rs/codegen/0.1.0")]
2526

2627
extern crate indexmap;
2728

0 commit comments

Comments
 (0)