diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000000000000000000000000000000000000..dd726ff68b312a5e6f41da14a55a6cb52df4824b
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,14 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](http://keepachangelog.com/)
+and this project adheres to [Semantic Versioning](http://semver.org/).
+
+## [Unreleased]
+
+## v0.1.0 - 2018-01-17
+
+Initial release
+
+[Unreleased]: https://github.com/japaric/stm32f30x-hal/compare/v0.1.0...HEAD
diff --git a/Cargo.toml b/Cargo.toml
index 6bba6b8ba1ff674eeca7c98224dee12c20ade9b1..6aa56deee6857e6141b59a458db36c3c0d4d8fe3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 authors = ["Jorge Aparicio <jorge@japaric.io>"]
 categories = ["embedded", "hardware-support", "no-std"]
-description = "HAL for STM32F30x microcontrollers"
+description = "HAL for the STM32F30x family of microcontrollers"
 keywords = ["arm", "cortex-m", "stm32", "hal"]
 license = "MIT OR Apache-2.0"
 name = "stm32f30x-hal"
diff --git a/README.md b/README.md
index c5dbcba9509e59df507137c4edabe34e5aafcbbc..40d25caf0337052008f170e1dcf540734aff11ac 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # `stm32f30x-hal`
 
-> Implementation of the [`embedded-hal`] traits for STM32F30x microcontrollers
+> HAL for the STM32F30x family of microcontrollers
 
 [`embedded-hal`]: https://crates.io/crates/embedded-hal
 
diff --git a/src/lib.rs b/src/lib.rs
index 6353ca9790834cfed626a9722e8a58b898c7909b..4a809c6c501f331f1b8e31ad4bc7ea200a9e04b8 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-//! HAL for STM32F30x microcontrollers
+//! HAL for the STM32F30x family of microcontrollers
 //!
 //! This is an implementation of the [`embedded-hal`] traits for the STM32F30x family of
 //! microcontrollers.