From f06f853f891cc3bf4f58f273f8a0d2a6a54a9f0d Mon Sep 17 00:00:00 2001
From: Rob Kiefer <rob@timescale.com>
Date: Wed, 11 Jul 2018 14:23:02 -0400
Subject: [PATCH] Release 0.10.1

---
 CHANGELOG.md                                  | 26 +++++++++++++++++++
 sql/CMakeLists.txt                            |  2 +-
 ...0.0--0.11.0-dev.sql => 0.10.0--0.10.1.sql} |  0
 version.config                                |  2 +-
 4 files changed, 28 insertions(+), 2 deletions(-)
 rename sql/updates/{0.10.0--0.11.0-dev.sql => 0.10.0--0.10.1.sql} (100%)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ac9616b32..5d7d71406 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,32 @@
 `psql` with the `-X` flag to prevent any `.psqlrc` commands from
 accidentally triggering the load of a previous DB version.**
 
+## 0.10.1 (2018-07-12)
+
+**High-level changes**
+* Improved memory management for long-lived connections.
+* Fixed handling of dropping triggers that would lead to orphaned references in pg_depend.
+* Fixed pruning in CustomScan when the subplan is not a Scan type that caused a crash with LATERALs.
+* Corrected size reporting that was not accurately counting TOAST size
+* Updated error messages that more closely conform to PG style.
+* Corrected handling of table and schema name changes to chunks; TimescaleDB metadata catalogs are now properly updated
+
+**Notable commits**
+* [8b58500] Fix bug where dropping triggers caused dangling references in pg_depend, disallow disabling triggers on hypertables
+* [745b8ab] Fixing CustomScan pruning whenever the subplan is NOT of a Scan type.
+* [67a8a41] Make chunk identifiers formatting safe using format
+* [41af6ff] Fix misreported toast_size in chunk_relation_size funcs
+* [4f2f1a6] Update the error messages to conform with the style guide; Fix tests
+* [3c28f65] Release cache pin memory
+* [abe76fc] Add support for changing chunk schema and name
+
+**Thanks**
+* @mfuterko for updating our error messages to conform with PG error message style
+* @fvannee for reporting a crash when using certain LATERAL joins with aggregates
+* @linba708 for reporting a memory leak with long lived connections
+* @phlsmk for reporting an issue where dropping triggers prevented drop_chunks from working due to orphaned dependencies
+
+
 ## 0.10.0 (2018-06-27)
 
 **High-level changes**
diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt
index 8222a43f5..f74811b31 100644
--- a/sql/CMakeLists.txt
+++ b/sql/CMakeLists.txt
@@ -54,7 +54,7 @@ set(MOD_FILES
   updates/0.9.0--0.9.1.sql
   updates/0.9.1--0.9.2.sql
   updates/0.9.2--0.10.0.sql
-  updates/0.10.0--0.11.0-dev.sql
+  updates/0.10.0--0.10.1.sql
 )
 
 set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
diff --git a/sql/updates/0.10.0--0.11.0-dev.sql b/sql/updates/0.10.0--0.10.1.sql
similarity index 100%
rename from sql/updates/0.10.0--0.11.0-dev.sql
rename to sql/updates/0.10.0--0.10.1.sql
diff --git a/version.config b/version.config
index 193f8bc53..d505a1355 100644
--- a/version.config
+++ b/version.config
@@ -1,2 +1,2 @@
-version = 0.11.0-dev
+version = 0.10.1
 update_from_version = 0.10.0