Skip to content

Commit 80845ba

Browse files
Prepare for 1.2 release.
1 parent 2692f65 commit 80845ba

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ If you use `jiant` in academic work, please cite it directly:
4242

4343
```
4444
@misc{wang2019jiant,
45-
author = {Alex Wang and Ian F. Tenney and Yada Pruksachatkun and Katherin Yu and Jan Hula and Patrick Xia and Raghu Pappagari and Shuning Jin and R. Thomas McCoy and Roma Patel and Yinghui Huang and Jason Phang and Edouard Grave and Najoung Kim and Phu Mon Htut and Thibault F'{e}vry and Berlin Chen and Nikita Nangia and Haokun Liu and Anhad Mohananey and Shikha Bordia and Nicolas Patry and Ellie Pavlick and Samuel R. Bowman},
46-
title = {\texttt{jiant} 1.1: A software toolkit for research on general-purpose text understanding models},
45+
author = {Alex Wang and Ian F. Tenney and Yada Pruksachatkun and Katherin Yu and Jan Hula and Patrick Xia and Raghu Pappagari and Shuning Jin and R. Thomas McCoy and Roma Patel and Yinghui Huang and Jason Phang and Edouard Grave and Haokun Liu and Najoung Kim and Phu Mon Htut and Thibault F'{e}vry and Berlin Chen and Nikita Nangia and Anhad Mohananey and Katharina Kann and Shikha Bordia and Nicolas Patry and David Benton and Ellie Pavlick and Samuel R. Bowman},
46+
title = {\texttt{jiant} 1.2: A software toolkit for research on general-purpose text understanding models},
4747
howpublished = {\url{http://jiant.info/}},
4848
year = {2019}
4949
}

tutorials/setup_tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ First off, let's make sure you've the full repository, including all the git sub
1010
This project uses submodules to manage some dependencies on other research code, in particular for loading CoVe, GPT, and BERT. To make sure you get these repos when you download `jiant`, add `--recursive` to your `clone` command:
1111

1212
```
13-
git clone --branch v1.1.0 --recursive https://github.com/nyu-mll/jiant.git jiant
13+
git clone --branch v1.2.0 --recursive https://github.com/nyu-mll/jiant.git jiant
1414
```
15-
This will download the full repository and load the 1.1 release of `jiant`. If you already have `jiant` downloaded locally, you can switch to the 1.1 release with
15+
This will download the full repository and load the 1.2 release of `jiant`. If you already have `jiant` downloaded locally, you can switch to the 1.2 release with
1616
```
17-
git checkout tags/v1.1.0 -b 1.1_master
17+
git checkout tags/v1.2.0 -b 1.2_master
1818
```
19-
This will create a branch called 1.1_master with HEAD at version 1.1. If you already cloned and just need to get the submodules, you can run:
19+
This will create a branch called 1.2_master with HEAD at version 1.2. If you already cloned and just need to get the submodules, you can run:
2020

2121
```
2222
git submodule update --init --recursive

0 commit comments

Comments
 (0)