You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opendal.apache.org by xu...@apache.org on 2023/03/20 03:36:11 UTC

[incubator-opendal] branch main updated: chore: Fix CHANGELOG not found (#1694)

This is an automated email from the ASF dual-hosted git repository.

xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git


The following commit(s) were added to refs/heads/main by this push:
     new 63f74dcd chore: Fix CHANGELOG not found (#1694)
63f74dcd is described below

commit 63f74dcd23aa3047d69bf3bb2f34b699bd8a67de
Author: Xuanwo <gi...@xuanwo.io>
AuthorDate: Mon Mar 20 11:36:06 2023 +0800

    chore: Fix CHANGELOG not found (#1694)
    
    Signed-off-by: Xuanwo <gi...@xuanwo.io>
---
 core/CHANGELOG.md    | 1 +
 core/src/docs/mod.rs | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md
new file mode 120000
index 00000000..04c99a55
--- /dev/null
+++ b/core/CHANGELOG.md
@@ -0,0 +1 @@
+../CHANGELOG.md
\ No newline at end of file
diff --git a/core/src/docs/mod.rs b/core/src/docs/mod.rs
index 64d66f50..bb11b085 100644
--- a/core/src/docs/mod.rs
+++ b/core/src/docs/mod.rs
@@ -26,7 +26,7 @@ pub mod concepts;
 pub mod internals;
 
 /// Changes log for all OpenDAL released versions.
-#[doc = include_str!("../../../CHANGELOG.md")]
+#[doc = include_str!("../../CHANGELOG.md")]
 pub mod changelog {}
 
 /// All features that provided by OpenDAL.