···7788## [Unreleased]
991010+## [1.0.0] - 2025-12-03
1111+1212+### Added
1313+1414+- New `--check` option to verify content of the DNS record.
1515+- Logging verbosity option.
1616+1717+### Changed
1818+1919+- Renamed `updater.py` to `api.py` and refactor of the API requests.
2020+2121+### Fixed
2222+2323+- No required record when checking version.
2424+1025## [0.1.0] - 2025-11-29
11261227### Added
+6-4
README.md
···2020```bash
2121$ dyns -h
22222323-usage: dyns [-h] [-v] record
2323+usage: dyns [-h] [--version] [-v] [--check] [record]
24242525A simple command to update a DNS record in DigitalOcean with your public IP.
26262727positional arguments:
2828- record domain name (ex. 'home.example.com') to update with your public IP
2828+ record domain name (ex. 'home.example.com') to update with your public IP
29293030options:
3131- -h, --help show this help message and exit
3232- -v, --version show version
3131+ -h, --help show this help message and exit
3232+ --version show version
3333+ -v increase verbosity of the output
3434+ --check checks the status of the record
3335```