parent
a17326ad95
commit
3867f9c0d8
|
@ -1,5 +1,8 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## v0.2.1
|
||||||
|
- FIx link to the most recent version in the old version banner
|
||||||
|
|
||||||
## v0.2.0
|
## v0.2.0
|
||||||
- Add new `PHONE_BLUETOOTH` `DORYAB` provider
|
- Add new `PHONE_BLUETOOTH` `DORYAB` provider
|
||||||
- Deprecate `PHONE_BLUETOOTH` `RAPIDS` provider
|
- Deprecate `PHONE_BLUETOOTH` `RAPIDS` provider
|
||||||
|
|
|
@ -15,6 +15,7 @@ git pull
|
||||||
git checkout -b feature/feature1
|
git checkout -b feature/feature1
|
||||||
```
|
```
|
||||||
1. Add, modify or delete the necessary files to add your new feature
|
1. Add, modify or delete the necessary files to add your new feature
|
||||||
|
1. Update the [change log](../../change-log) (`docs/change-log.md`)
|
||||||
2. Stage and commit your changes using VS Code git GUI or the following commands
|
2. Stage and commit your changes using VS Code git GUI or the following commands
|
||||||
```bash
|
```bash
|
||||||
git add modified-file1 modified-file2
|
git add modified-file1 modified-file2
|
||||||
|
@ -89,6 +90,7 @@ git describe --abbrev=0 --tags # Bump the hotfix (0.1.0 to 0.1.1 => NEW_HOTFIX)
|
||||||
git checkout -b hotfix/v[NEW_HOTFIX] master
|
git checkout -b hotfix/v[NEW_HOTFIX] master
|
||||||
```
|
```
|
||||||
1. Fix whatever needs to be fixed
|
1. Fix whatever needs to be fixed
|
||||||
|
1. Update the change log
|
||||||
1. Tag and merge the hotfix
|
1. Tag and merge the hotfix
|
||||||
```bash
|
```bash
|
||||||
git tag v[NEW_HOTFIX]
|
git tag v[NEW_HOTFIX]
|
||||||
|
|
|
@ -8,7 +8,7 @@ window.addEventListener("DOMContentLoaded", function() {
|
||||||
if(versions[id]["aliases"].length > 0 && versions[id]["aliases"].includes("latest"))
|
if(versions[id]["aliases"].length > 0 && versions[id]["aliases"].includes("latest"))
|
||||||
latest_version = "/" + versions[id].version + "/"
|
latest_version = "/" + versions[id].version + "/"
|
||||||
if(!window.location.pathname.includes("/latest/") && (latest_version.length > 0 && !window.location.pathname.includes(latest_version)))
|
if(!window.location.pathname.includes("/latest/") && (latest_version.length > 0 && !window.location.pathname.includes(latest_version)))
|
||||||
document.querySelector("div[data-md-component=announce]").innerHTML = "<div id='announce-msg'>You are seeing the docs for a previous version of RAPIDS, <a href='" + window.location.href + "latest/'>click here to go to the latest</a></div>"
|
document.querySelector("div[data-md-component=announce]").innerHTML = "<div id='announce-msg'>You are seeing the docs for a previous version of RAPIDS, <a href='http://www.rapids.science/'>click here to go to the latest</a></div>"
|
||||||
};
|
};
|
||||||
xhr.send();
|
xhr.send();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue