Browse Source

release v0.1.0

Fabian Peter Hammerle 2 years ago
parent
commit
917d44d785
2 changed files with 18 additions and 3 deletions
  1. 15 0
      CHANGELOG.md
  2. 3 3
      README.md

+ 15 - 0
CHANGELOG.md

@@ -0,0 +1,15 @@
+# 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] - 2022-02-20
+### Added
+- [toit](https://github.com/toitlang/toit)
+- alpine base image
+
+[Unreleased]: https://git.hammerle.me/fphammerle/docker-toit/compare/v0.1.0...HEAD
+[0.1.0]: https://git.hammerle.me/fphammerle/docker-toit/src/v0.1.0

+ 3 - 3
README.md

@@ -1,11 +1,11 @@
 ```sh
-$ podman build --format docker -t toit .
 # host network for redirect back after login at
 # https://auth.toit.io/oauth/authorize?[...]?redirect_uri=http://localhost/[...]
 $ podman run --rm -it -v toit_home:/home/toit \
-    --network host toit \
+    --network host docker.io/fphammerle/toit:TAG \
     toit device info
 $ podman run --rm -it -v toit_home:/home/toit \
-    --device /dev/ttyUSB0:/dev/ttyUSB0 --group-add keep-groups toit \
+    --device /dev/ttyUSB0:/dev/ttyUSB0 --group-add keep-groups \
+    docker.io/fphammerle/toit:TAG \
     toit serial monitor
 ```