Skip to content

Commit 3def0e3

Browse files
committed
move change log to root
1 parent 8930f02 commit 3def0e3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
File renamed without changes.

scripts/update-version.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,27 +85,27 @@ function update_jslib
8585

8686
function add_change_log_entry
8787
{
88-
cd "$root_dir/docs"
88+
cd "$root_dir"
8989

9090
change_log_data="# Changes in v$version (not released)
9191
9292
93-
$(cat change-log.md)"
93+
$(cat ChangeLog.md)"
9494

95-
echo "$change_log_data" > change-log.md
95+
echo "$change_log_data" > ChangeLog.md
9696
}
9797

9898
function mark_change_log_entry_as_released
9999
{
100-
cd "$root_dir/docs"
100+
cd "$root_dir"
101101
release_date=$(date -u +%F)
102-
sed -i "s|v$version (.*)|v$version (released $release_date)|" change-log.md
102+
sed -i "s|v$version (.*)|v$version (released $release_date)|" ChangeLog.md
103103
}
104104

105105
function unmark_change_log_entry_as_released
106106
{
107-
cd "$root_dir/docs"
108-
sed -i "s|v$version (.*)|v$version (not released)|" change-log.md
107+
cd "$root_dir"
108+
sed -i "s|v$version (.*)|v$version (not released)|" ChangeLog.md
109109
}
110110

111111
update_change_log=""

0 commit comments

Comments
 (0)