Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
Merge pull request #12 from rjdellecese/new-release
Browse files Browse the repository at this point in the history
Prep for new release (v1.6.0)
  • Loading branch information
rjdellecese authored Feb 25, 2021
2 parents 0aa617e + b6f10cc commit 9fba3a1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
gleam 0.11.2
gleam 0.14.0
erlang 23.2
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## v1.6.0 - 2021-02-25

### Changed

- Gleam version to 0.14.0 and `gleam_stdlib` version to 0.14.0.
- Relaxed `gleam_stdlib` version constraints in `rebar.config`.

## v1.5.1 - 2020-09-07

### Fixed
Expand Down Expand Up @@ -40,8 +47,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Added

- An `ok_error_tuple` decoder for decoding `ok`/`error` tuples, (e.g. `{ok,
Success}`/`{error, Failure}`).
- An `ok_error_tuple` decoder for decoding `ok`/`error` tuples, (e.g. `{ok, Success}`/`{error, Failure}`).

## v1.1.0 - 2019-12-28

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# decode

[![Hex.pm](https://img.shields.io/hexpm/v/gleam_decode)](https://hex.pm/packages/gleam_decode) [![HexDocs.pm](https://img.shields.io/badge/hex-docs-ff69b4)](https://hexdocs.pm/gleam_decode/)

A Gleam library for transforming Erlang or Elixir data into Gleam data.
Expand Down Expand Up @@ -117,25 +118,22 @@ pub fn erl_create_user() -> Result(User, String) {
}
```


## Installation

Add `gleam_decode` to the deps section of your `rebar.config` file.

```erlang
{deps, [
{gleam_decode, "1.5.1"}
{gleam_decode, "1.6.0"}
]}.
```


## Need help?

If you are having trouble understanding how to use this library, or find
yourself dealing with a decoding problem that you don't believe is solvable with
the current API, please open an issue!
## Credit
Most of this library is based on the Elm language's JSON decoding library
Expand Down
2 changes: 1 addition & 1 deletion src/gleam_decode.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application,gleam_decode,
[{description,"Transform Erlang or Elixir data into Gleam data"},
{vsn,"1.5.1"},
{vsn,"1.6.0"},
{registered,[]},
{applications,[kernel,stdlib]},
{env,[]},
Expand Down

0 comments on commit 9fba3a1

Please sign in to comment.