Skip to content

Commit

Permalink
V0.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mnishiguchi authored Feb 12, 2022
1 parent 8206bf1 commit 068302c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2] - 2022-02-11
### Improvements
- Simplified the transport-related code
- Refactor the top-level module

### Added
- `typed_struct`
- `circuit_i2c`

### Removed
- `i2c_server`
- `mox`

## [0.1.1] - 2021-08-27
### Added
- Derived `dew_point_c` value
Expand All @@ -15,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/mnishiguchi/sht4x/compare/v0.1.1..HEAD
[0.1.1]: https://github.com/mnishiguchi/sht4x/releases/tag/v0.1.1
[Unreleased]: https://github.com/mnishiguchi/sht4x/compare/v0.1.2..HEAD
[0.1.2]: https://github.com/mnishiguchi/sht4x/releases/tag/v0.1.1..v0.1.2
[0.1.1]: https://github.com/mnishiguchi/sht4x/releases/tag/v0.1.0..v0.1.1
[0.1.0]: https://github.com/mnishiguchi/sht4x/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2021 Masatoshi Nishiguchi
Copyright (c) 2022 Masatoshi Nishiguchi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# SHT4X

[![Hex version](https://img.shields.io/hexpm/v/sht4x.svg "Hex version")](https://hex.pm/packages/sht4x)
[![Hex version](https://img.shields.io/hexpm/v/sht4x.svg 'Hex version')](https://hex.pm/packages/sht4x)
[![CI](https://github.com/mnishiguchi/sht4x/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/mnishiguchi/sht4x/actions/workflows/ci.yml)

Read temperature and pressure from [Sensirion SHT4x
sensors](https://www.sensirion.com/en/environmental-sensors) in Elixir.
Read temperature and pressure from [Sensirion SHT4x sensors](https://www.sensirion.com/en/environmental-sensors) in Elixir.

## Usage

Expand All @@ -21,3 +20,5 @@ iex> SHT4X.measure(sht)
timestamp_ms: 7747487
}}
```

For details, see [API reference](https://hexdocs.pm/sht4x/api-reference.html).
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule SHT4X.MixProject do
use Mix.Project

@version "0.1.1"
@version "0.1.2"
@source_url "https://github.com/mnishiguchi/sht4x"

def project do
Expand Down

0 comments on commit 068302c

Please sign in to comment.