From 80845ba417bbe6c3b2f7b1ab255a9452c4a3d780 Mon Sep 17 00:00:00 2001 From: Sam Bowman Date: Mon, 16 Sep 2019 14:25:51 -0400 Subject: [PATCH] Prepare for 1.2 release. --- README.md | 4 ++-- tutorials/setup_tutorial.md | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e784f44b4..f697d0a1d 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,8 @@ If you use `jiant` in academic work, please cite it directly: ``` @misc{wang2019jiant, - 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}, - title = {\texttt{jiant} 1.1: A software toolkit for research on general-purpose text understanding models}, + 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}, + title = {\texttt{jiant} 1.2: A software toolkit for research on general-purpose text understanding models}, howpublished = {\url{http://jiant.info/}}, year = {2019} } diff --git a/tutorials/setup_tutorial.md b/tutorials/setup_tutorial.md index 1b46cecb4..457551da0 100644 --- a/tutorials/setup_tutorial.md +++ b/tutorials/setup_tutorial.md @@ -10,13 +10,13 @@ First off, let's make sure you've the full repository, including all the git sub 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: ``` -git clone --branch v1.1.0 --recursive https://github.com/nyu-mll/jiant.git jiant +git clone --branch v1.2.0 --recursive https://github.com/nyu-mll/jiant.git jiant ``` -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 +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 ``` -git checkout tags/v1.1.0 -b 1.1_master +git checkout tags/v1.2.0 -b 1.2_master ``` -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: +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: ``` git submodule update --init --recursive