diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3fc1600..4d0d2c1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
+## [0.7.1] - 2022-04-27
+### Added
+- Introduce `Browser::is_available()` and `Browser::exists(&self)` to check availability of browsers without opening a URL
+
+### Changed
+- Modify `BrowserOptions` to be constructable only via the builder pattern, to prevent future API compatibility issues
+
## [0.7.0] - 2022-04-24
### Added
- Introduce way to provide a target hint to the browser via `BrowserOptions::target_hint` [PR #45](https://github.com/amodm/webbrowser-rs/pull/45)
diff --git a/Cargo.toml b/Cargo.toml
index d334af3..4e14888 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "webbrowser"
description = "Open URLs in web browsers available on a platform"
-version = "0.7.0"
+version = "0.7.1"
authors = ["Amod Malviya @amodm"]
documentation = "https://docs.rs/webbrowser"
homepage = "https://github.com/amodm/webbrowser-rs"