Add CHANGELOG to subcrates

This commit is contained in:
Héctor Ramón Jiménez 2019-11-25 14:55:14 +01:00
parent 1344ea84fc
commit 862859142b
8 changed files with 77 additions and 19 deletions

14
web/CHANGELOG.md Normal file
View file

@ -0,0 +1,14 @@
# Changelog
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]
## [0.1.0] - 2019-11-25
### Added
- First release! :tada:
[Unreleased]: https://github.com/hecrj/iced/compare/web-0.1.0...HEAD
[0.1.0]: https://github.com/hecrj/iced/releases/tag/web-0.1.0

View file

@ -1,6 +1,6 @@
[package]
name = "iced_web"
version = "0.1.0-alpha"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018"
description = "A web backend for Iced"
@ -15,7 +15,7 @@ categories = ["web-programming"]
maintenance = { status = "actively-developed" }
[dependencies]
iced_core = { version = "0.1.0-alpha", path = "../core", features = ["command"] }
iced_core = { version = "0.1.0", path = "../core", features = ["command"] }
dodrio = "0.1.0"
wasm-bindgen = "0.2.51"
wasm-bindgen-futures = "0.4"