Skip to content

Commit 6d030c9

Browse files
authored
[Versioning] v0.1.1 (#1137)
1 parent a3f6969 commit 6d030c9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
types: [opened, synchronize, reopened]
55
push:
66
branches:
7-
- release/0.1.0
7+
- release/0.1.1
88

99
jobs:
1010

@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
export PATH="/opt/python/${{ matrix.python_version[1] }}/bin:$PATH"
2828
python3 -mpip install wheel
29-
BUILD_VERSION=0.1.0 python3 setup.py bdist_wheel
29+
BUILD_VERSION=0.1.1 python3 setup.py bdist_wheel
3030
# NB: wheels have the linux_x86_64 tag so we rename to manylinux1
3131
# find . -name 'dist/*whl' -exec bash -c ' mv $0 ${0/linux/manylinux1}' {} \;
3232
# pytorch/pytorch binaries are also manylinux_2_17 compliant but they
@@ -66,7 +66,7 @@ jobs:
6666
run: |
6767
export CC=clang CXX=clang++
6868
python3 -mpip install wheel
69-
BUILD_VERSION=0.1.0 python3 setup.py bdist_wheel
69+
BUILD_VERSION=0.1.1 python3 setup.py bdist_wheel
7070
- name: Upload wheel for the test-wheel job
7171
uses: actions/upload-artifact@v2
7272
with:
@@ -98,7 +98,7 @@ jobs:
9898
shell: bash
9999
run: |
100100
python3 -mpip install wheel
101-
BUILD_VERSION=0.1.0 python3 setup.py bdist_wheel
101+
BUILD_VERSION=0.1.1 python3 setup.py bdist_wheel
102102
- name: Upload wheel for the test-wheel job
103103
uses: actions/upload-artifact@v2
104104
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ If you're using TorchRL, please refer to this BibTeX entry to cite this work:
643643
author = {Moens, Vincent},
644644
title = {{TorchRL: an open-source Reinforcement Learning (RL) library for PyTorch}},
645645
url = {https://github.com/pytorch/rl},
646-
version = {0.1.0},
646+
version = {0.1.1},
647647
year = {2023}
648648
}
649649
```

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def _main(argv):
204204
"numpy",
205205
"packaging",
206206
"cloudpickle",
207-
"tensordict>=0.1.0",
207+
"tensordict>=0.1.1",
208208
],
209209
extras_require={
210210
"atari": [

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.1.1

0 commit comments

Comments
 (0)