From 1a2b392cd5a1882cc2f125083c6c10836e86e7ff Mon Sep 17 00:00:00 2001
From: Jorge Aparicio <jorge@japaric.io>
Date: Wed, 17 Jan 2018 00:05:04 +0100
Subject: [PATCH] v0.1.0

---
 CHANGELOG.md | 14 ++++++++++++++
 Cargo.toml   |  2 +-
 README.md    |  2 +-
 src/lib.rs   |  2 +-
 4 files changed, 17 insertions(+), 3 deletions(-)
 create mode 100644 CHANGELOG.md

diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..dd726ff
--- /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 6bba6b8..6aa56de 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 c5dbcba..40d25ca 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 6353ca9..4a809c6 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.
-- 
GitLab