Bump to version 0.26.1 (#1283)

Signed-off-by: Xuanwo <github@xuanwo.io>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d82fcae..adcaf68 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,16 +5,29 @@
 The format is based on [Keep a Changelog](https://keepachangelog.com/)
 and this project adheres to [Semantic Versioning](https://semver.org/).
 
+## [v0.26.1] - 2023-02-05
+
+### Changed
+
+- refactor: Remove not used layer subdir (#1280)
+
+### Docs
+
+- docs: Add v0.26 upgrade guide (#1276)
+- docs: Add feature sets in services (#1277)
+- docs: Migrate all docs in rustdoc instead (#1281)
+- docs: Fix index page not redirected (#1282)
+
 ## [v0.26.0] - 2023-02-04
 
-## Added
+### Added
 
 - feat: Add benchmarks for blocking_seek operations (#1258)
 - feat: add dev container (#1261)
 - feat: Zero Cost OpenDAL (#1260)
 - feat: Allow dynamic dispatch layer (#1273)
 
-## Changed
+### Changed
 
 - refactor: remove the duplicated dependency in dev-dependencies (#1257)
 - refactor: some code in GitHub Actions (#1269)
@@ -1274,6 +1287,7 @@
 
 Hello, OpenDAL!
 
+[v0.26.1]: https://github.com/datafuselabs/opendal/compare/v0.26.0...v0.26.1
 [v0.26.0]: https://github.com/datafuselabs/opendal/compare/v0.25.2...v0.26.0
 [v0.25.2]: https://github.com/datafuselabs/opendal/compare/v0.25.1...v0.25.2
 [v0.25.1]: https://github.com/datafuselabs/opendal/compare/v0.25.0...v0.25.1
diff --git a/Cargo.toml b/Cargo.toml
index 3b87b46..fd45e27 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,7 +16,7 @@
 license = "Apache-2.0"
 name = "opendal"
 repository = "https://github.com/datafuselabs/opendal"
-version = "0.26.0"
+version = "0.26.1"
 # MSRV of OpenDAL. Please update this field while bump.
 rust-version = "1.60"
 
diff --git a/binaries/oay/Cargo.lock b/binaries/oay/Cargo.lock
index 7d24bf6..ed357c6 100644
--- a/binaries/oay/Cargo.lock
+++ b/binaries/oay/Cargo.lock
@@ -1124,7 +1124,7 @@
 
 [[package]]
 name = "opendal"
-version = "0.26.0"
+version = "0.26.1"
 dependencies = [
  "anyhow",
  "async-compat",
diff --git a/binaries/oli/Cargo.lock b/binaries/oli/Cargo.lock
index 910cc4b..a84f41e 100644
--- a/binaries/oli/Cargo.lock
+++ b/binaries/oli/Cargo.lock
@@ -831,7 +831,7 @@
 
 [[package]]
 name = "opendal"
-version = "0.26.0"
+version = "0.26.1"
 dependencies = [
  "anyhow",
  "async-compat",
diff --git a/src/docs/mod.rs b/src/docs/mod.rs
index 8efa51e..8ea621d 100644
--- a/src/docs/mod.rs
+++ b/src/docs/mod.rs
@@ -17,7 +17,12 @@
 //! It's highly recommand to start with reading [`concepts`] first.
 
 pub mod comparisons;
+
 pub mod concepts;
+
+#[doc = include_str!("../../CHANGELOG.md")]
+pub mod changelog {}
+
 #[cfg(not(doctest))]
 pub mod rfcs;