From 367b4733c62371d7ae040a472277a77a2d26703e Mon Sep 17 00:00:00 2001 From: Alex Petty Date: Wed, 12 Oct 2022 10:03:22 -0500 Subject: [PATCH] increment version number to 2.0 --- CHANGELOG | 1 + README.md | 2 +- ldsc.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index dd72373d..570d89ae 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,4 @@ +11.10.22 v2.0.0; port to Python 3 and update to newer versions of pandas, numpy, and more 02.01.20 Fix KeyError in allele_merge 30.07.19 v1.0.1; update changelog and increment version for edits on this date (see #164) 30.07.19 Fix to display of liability scale gencov, h2 in rg results log (see #162) diff --git a/README.md b/README.md index 57956127..e0588319 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# LDSC (LD SCore) `v1.0.1` +# LDSC (LD SCore) `v2.0.0` `ldsc` is a command line tool for estimating heritability and genetic correlation from GWAS summary statistics. `ldsc` also computes LD Scores. diff --git a/ldsc.py b/ldsc.py index 96407cdb..b734531e 100755 --- a/ldsc.py +++ b/ldsc.py @@ -27,7 +27,7 @@ except AttributeError: raise ImportError('LDSC requires pandas version >= 0.17.0') -__version__ = '1.0.1' +__version__ = '2.0.0' MASTHEAD = "*********************************************************************\n" MASTHEAD += "* LD Score Regression (LDSC)\n" MASTHEAD += "* Version {V}\n".format(V=__version__) diff --git a/setup.py b/setup.py index 427f84ed..bf3b0e97 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='ldsc', - version='1.0', + version='2.0', description='LD Score Regression (LDSC)', url='http://github.com/bulik/ldsc', author='Brendan Bulik-Sullivan and Hilary Finucane',