chore: release version v0.2.1

This commit is contained in:
James Harton 2021-01-04 20:04:03 +00:00
parent 5b273e4356
commit a566b66f2d
3 changed files with 11 additions and 2 deletions

View file

@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v0.2.1](https://gitlab.com/jimsy/gcode/compare/v0.2.0...v0.2.1) (2021-01-04)
### Bug Fixes:
* model: Change all model init functions to return a result.
## [v0.2.0](https://gitlab.com/jimsy/gcode/compare/v0.1.0...v0.2.0) (2021-01-04)

View file

@ -10,7 +10,7 @@ by adding `gcode` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:gcode, "~> 0.2.0"}
{:gcode, "~> 0.2.1"}
]
end
```

View file

@ -1,7 +1,7 @@
defmodule Gcode.MixProject do
use Mix.Project
@version "0.2.0"
@version "0.2.1"
@description """
A G-code parser and generator.
"""