Skip to content

Commit 1ccce9f

Browse files
authored
Bump version to v1.2.9 (#1042)
1 parent 9b90561 commit 1ccce9f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Please include information about how you installed.
2828
- OS:
2929
<!-- [e.g. ubuntu 20.04, macOS 11.0] -->
3030
- Version(s):
31-
<!-- e.g. [SLEAP v1.2.8, python 3.8] --->
31+
<!-- e.g. [SLEAP v1.2.9, python 3.8] --->
3232
- SLEAP installation method (listed [here](https://sleap.ai/installation.html#)):
3333
- [ ] [Conda from package](https://sleap.ai/installation.html#conda-package)
3434
- [ ] [Conda from source](https://sleap.ai/installation.html#conda-from-source)

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
copyright = f"2019–{date.today().year}, Talmo Lab"
2929

3030
# The short X.Y version
31-
version = "1.2.8"
31+
version = "1.2.9"
3232

3333
# Get the sleap version
3434
# with open("../sleap/version.py") as f:
3535
# version_file = f.read()
3636
# version = re.search("\d.+(?=['\"])", version_file).group(0)
3737

3838
# Release should be the full branch name
39-
release = "v1.2.8"
39+
release = "v1.2.9"
4040

4141
html_title = f"SLEAP ({release})"
4242
html_short_title = "SLEAP"

docs/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ On Windows, our personal preference is to use alternative terminal apps like [Cm
6464
### `conda` package
6565

6666
```bash
67-
conda create -y -n sleap -c sleap -c nvidia -c conda-forge sleap=1.2.8
67+
conda create -y -n sleap -c sleap -c nvidia -c conda-forge sleap=1.2.9
6868
```
6969

7070
**This is the recommended installation method**. Works on **Windows** and **Linux**.
@@ -113,7 +113,7 @@ conda create -y -n sleap -c sleap -c nvidia -c conda-forge sleap=1.2.8
113113
### `pip` package
114114

115115
```bash
116-
pip install sleap==1.2.8
116+
pip install sleap==1.2.9
117117
```
118118

119119
This works on **any OS except M1** and on **Google Colab**.

sleap/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"""
1313

1414

15-
__version__ = "1.2.8"
15+
__version__ = "1.2.9"
1616

1717

1818
def versions():

0 commit comments

Comments
 (0)