Skip to content

Commit ad9d98e

Browse files
author
Andrea Cossu
authored
Merge pull request #1259 from AndreaCossu/master
Changed version to 0.3.1
2 parents bd048cb + f04ca25 commit ad9d98e

17 files changed

+20
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Current Release
8585

8686
Avalanche is a framework in constant development. Thanks to the support of the [ContinualAI](https://www.continualai.org/) community and its active members we are quickly extending its features and improve its usability based on the demands of our research community!
8787

88-
A the moment, Avalanche is in [**Beta (v0.3.0)**](https://github.com/ContinualAI/avalanche/releases/tag/v0.3.0). We support [several *Benchmarks*, *Strategies* and *Metrics*](https://avalanche.continualai.org/getting-started/alpha-version), that make it, we believe, the best tool out there for your continual learning research! 💪
88+
A the moment, Avalanche is in [**Beta (v0.3.1)**](https://github.com/ContinualAI/avalanche/releases/tag/v0.3.1). We support [several *Benchmarks*, *Strategies* and *Metrics*](https://avalanche.continualai.org/getting-started/alpha-version), that make it, we believe, the best tool out there for your continual learning research! 💪
8989

9090
**You can install Avalanche by running `pip install avalanche-lib`.**
9191
This will install the core Avalanche package. You can install Avalanche with extra packages to enable more functionalities.

avalanche/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from avalanche import training
66

77

8-
__version__ = "0.3.0"
8+
__version__ = "0.3.1"
99

1010
_dataset_add = None
1111

docs/gitbook/from-zero-to-hero-tutorial/02_models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can use any model provided in the [Pytorch](https://pytorch.org/) official e
1414

1515

1616
```python
17-
!pip install avalanche-lib==0.3.0
17+
!pip install avalanche-lib==0.3.1
1818
```
1919

2020

docs/gitbook/from-zero-to-hero-tutorial/03_benchmarks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Welcome to the "_benchmarks_" tutorial of the "_From Zero to Hero_" series. In t
88

99

1010
```python
11-
!pip install avalanche-lib==0.3.0
11+
!pip install avalanche-lib==0.3.1
1212
```
1313

1414
## 🎯 Nomenclature

docs/gitbook/from-zero-to-hero-tutorial/04_training.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ First, let's install Avalanche. You can skip this step if you have installed it
99

1010

1111
```python
12-
!pip install avalanche-lib==0.3.0
12+
!pip install avalanche-lib==0.3.1
1313
```
1414

1515
## 💪 The Training Module

docs/gitbook/from-zero-to-hero-tutorial/05_evaluation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Welcome to the "_Evaluation_" tutorial of the "_From Zero to Hero_" series. In t
88

99

1010
```python
11-
!pip install avalanche-lib==0.3.0
11+
!pip install avalanche-lib==0.3.1
1212
```
1313

1414
## 📈 The Evaluation Module

docs/gitbook/from-zero-to-hero-tutorial/06_loggers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Welcome to the _"Logging"_ tutorial of the _"From Zero to Hero"_ series. In this
88

99

1010
```python
11-
!pip install avalanche-lib==0.3.0
11+
!pip install avalanche-lib==0.3.1
1212
```
1313

1414
### 📑 The Logging Module

docs/gitbook/from-zero-to-hero-tutorial/07_putting-all-together.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Welcome to the "_Putting All Together_" tutorial of the "_From Zero to Hero_" se
77

88

99
```python
10-
!pip install avalanche-lib==0.3.0
10+
!pip install avalanche-lib==0.3.1
1111
```
1212

1313
## 🛴 A Comprehensive Example

docs/gitbook/from-zero-to-hero-tutorial/08_extending-avalanche.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: 'Make it Custom, Make it Yours'
66

77

88
```python
9-
!pip install avalanche-lib==0.3.0
9+
!pip install avalanche-lib==0.3.1
1010
```
1111

1212

docs/release_process.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,7 @@ Place yourself in the Avalanche project directory.
2929
6. Update default ReadTheDocs and GitBook version.
3030
For ReadTheDocs, activate the new tag and make it default.
3131
For GitBook, create a copy of the current space. The copy will not be synced with Github, while the original one will
32-
still be synced. Make it the default collection.
32+
still be synced. To make the copied collection the default one:
33+
1. rename the copied collection with a new name in the main Avalanche project and move it accordingly to preserve the order
34+
2. publish the copied collection as `in collection` by entering the collection, the option is the button on top of the page
35+
3. in the main Avalanche project on Gitbook click on the option in the top right and customize the collection. The copied collection should appear in a dropdown menu to make it default

0 commit comments

Comments
 (0)