Skip to content
This repository was archived by the owner on Mar 29, 2025. It is now read-only.

Commit 1901766

Browse files
committed
adding release badge and changelog
1 parent 921d276 commit 1901766

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
### Changed
11+
12+
- Changelog typo
13+
14+
## [1.0.0] - 2024-08-23
15+
16+
### Added
17+
18+
- Created the project changelog.
19+
- Created unit tests
20+
- Added module docstring
21+
- Added method docstring
22+
- Added badges
23+
- Get temperature, pressure, humidity from OpenWeatherMapAPI
24+
- Get temperature, pressure, humidity from BME280 sensor
25+
- Calculate the dew point for current readings
26+
- Check csv file exists
27+
- Creates missing csv file and creates headers
28+
- Appends current readings to the csv file
29+
- No API key assumes using BME280 sensor with defaults
30+
31+
### Changed
32+
33+
- Variables are passed as cli arguments
34+
- Updated the project readme
35+
36+
### Removed
37+
38+
- Removed hard coded variables
39+
40+
[unreleased]: https://github.com/joe-mccarthy/environment-checker/compare/v1.1.1...HEAD
41+
[1.0.0]: https://github.com/joe-mccarthy/environment-checker/releases/tag/v0.0.1

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Environment Checker
22

33
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/joe-mccarthy/environment-checker/build-test.yml?style=for-the-badge)
4-
![Coveralls](https://img.shields.io/coverallsCoverage/github/joe-mccarthy/environment-checker?style=for-the-badge)
4+
![Coveralls](https://img.shields.io/coverallsCoverage/github/joe-mccarthy/environment-checker?style=for-the-badge)
55
[![Python 3.8](https://img.shields.io/badge/python-3.8-blue.svg?style=for-the-badge)](https://www.python.org/downloads/release/python-380/)
6+
![GitHub Release](https://img.shields.io/github/v/release/joe-mccarthy/environment-checker?sort=semver&style=for-the-badge)
67
![GitHub License](https://img.shields.io/github/license/joe-mccarthy/environment-checker?style=for-the-badge)
78

89
Simple script that's called from a cron job that will take a reading from a bme 280 sensor or open weather api and record the result in a csv file with the calculated dew point.

0 commit comments

Comments
 (0)