diff --git a/README.md b/README.md
index 630643a..f816f7c 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ end
 
 def deps do
   [
-    {:es6_maps, "~> 0.1.0", runtime: false}
+    {:es6_maps, "~> 0.2.0", runtime: false}
   ]
 end
 ```
diff --git a/mix.exs b/mix.exs
index 265c95d..5b2d44f 100644
--- a/mix.exs
+++ b/mix.exs
@@ -4,7 +4,7 @@ defmodule Es6Maps.MixProject do
   def project do
     [
       app: :es6_maps,
-      version: "0.1.0",
+      version: "0.2.0",
       description: "Shorthand syntax for Elixir maps: `%{foo, bar} = map; IO.puts(foo)`",
       package: [
         links: %{"GitHub" => "https://github.com/kzemek/es6_maps"},
diff --git a/test/es6_maps_test/mix.exs b/test/es6_maps_test/mix.exs
index 12ce461..92795f4 100644
--- a/test/es6_maps_test/mix.exs
+++ b/test/es6_maps_test/mix.exs
@@ -4,7 +4,7 @@ defmodule Es6MapsTest.MixProject do
   def project do
     [
       app: :es6_maps_test,
-      version: "0.1.0",
+      version: "0.2.0",
       elixir: "~> 1.16",
       elixirc_paths: elixirc_paths(Mix.env()),
       compilers: [:es6_maps | Mix.compilers()],