diff --git a/CHANGELOG.md b/CHANGELOG.md
index 13b826b2..a67308ca 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
# attr_encrypted
-## Unreleased
+## 4.1.0
-* Drop support for `datamapper` which has not had a release since October 2011. This is in an attempt to make
+* Changed: Dropped support for `datamapper` which has not had a release since October 2011. This is in an attempt to make
maintenance and testing easier moving forward.
## 4.0.0
diff --git a/README.md b/README.md
index bfae1b1d..da841989 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,6 @@ Generates attr_accessors that transparently encrypt and decrypt attributes.
It works with ANY class, however, you get a few extra features when you're using it with `ActiveRecord` or `Sequel`.
-
## Installation
Add attr_encrypted to your gemfile:
diff --git a/lib/attr_encrypted/version.rb b/lib/attr_encrypted/version.rb
index c3440d67..8f554135 100644
--- a/lib/attr_encrypted/version.rb
+++ b/lib/attr_encrypted/version.rb
@@ -4,7 +4,7 @@ module AttrEncrypted
# Contains information about this gem's version
module Version
MAJOR = 4
- MINOR = 0
+ MINOR = 1
PATCH = 0
# Returns a version string by joining MAJOR, MINOR, and PATCH with '.'