Skip to content

Commit d142e61

Browse files
Changing version numbers ahead of new release
1 parent 782f991 commit d142e61

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ sequencing (RRBS). These tools focus on overcoming the computing
1212
challenges imposed by the scale of genome-wide DNA methylation data,
1313
which is usually the early parts of data analysis.
1414

15-
## Installing release 1.1.0
15+
## Installing release 1.2.0
1616

1717
The documentation for DNMTools can be found
1818
[here](https://dnmtools.readthedocs.io). But if you want to install
@@ -42,14 +42,14 @@ all the formatting.
4242

4343
### Configuration
4444

45-
* Download [dnmtools-1.1.0.tar.gz](https://github.com/smithlabcode/dnmtools/releases/download/v1.1.0/dnmtools-1.1.0.tar.gz).
45+
* Download [dnmtools-1.2.0.tar.gz](https://github.com/smithlabcode/dnmtools/releases/download/v1.2.0/dnmtools-1.2.0.tar.gz).
4646
* Unpack the archive:
4747
```console
48-
$ tar -zxvf dnmtools-1.1.0.tar.gz
48+
$ tar -zxvf dnmtools-1.2.0.tar.gz
4949
```
5050
* Move into the dnmtools directory and create a build directory:
5151
```console
52-
$ cd dnmtools-1.1.0
52+
$ cd dnmtools-1.2.0
5353
$ mkdir build && cd build
5454
```
5555
* Run the configuration script:

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
1414
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1515
dnl General Public License for more details.
1616

17-
AC_INIT([dnmtools], [1.1.0], [[email protected]],
17+
AC_INIT([dnmtools], [1.2.0], [[email protected]],
1818
[dnmtools], [https://github.com/smithlabcode/dnmtools])
1919
dnl the config.h is not currently #included in the source, and only
2020
dnl used to keep command lines short.

documentation/docs/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ would need to be activated when you want to use dnmtools.
6060

6161
### Configuration
6262

63-
* Download [dnmtools-1.1.0.tar.gz](https://github.com/smithlabcode/dnmtools/releases/download/v1.1.0/dnmtools-1.1.0.tar.gz).
63+
* Download [dnmtools-1.2.0.tar.gz](https://github.com/smithlabcode/dnmtools/releases/download/v1.2.0/dnmtools-1.2.0.tar.gz).
6464
* Unpack the archive:
6565
```console
66-
$ tar -zxvf dnmtools-1.1.0.tar.gz
66+
$ tar -zxvf dnmtools-1.2.0.tar.gz
6767
```
6868
* Move into the dnmtools directory and create a build directory:
6969
```console
70-
$ cd dnmtools-1.1.0
70+
$ cd dnmtools-1.2.0
7171
$ mkdir build && cd build
7272
```
7373
* Run the configuration script:

src/dnmtools.cpp

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
/* Copyright (C) 2022 University of Southern California and
2-
* Andrew D. Smith
1+
/* Copyright (C) 2022 University of Southern California and
2+
* Andrew D. Smith and Guilherme Sena
33
*
4-
* Authors: Andrew D. Smith and Song Qiang and Guilherme Sena
4+
* Authors: Andrew D. Smith and Song Qiang and Guilherme Sena
55
*
6-
* This program is free software: you can redistribute it and/or modify
7-
* it under the terms of the GNU General Public License as published by
8-
* the Free Software Foundation, either version 3 of the License, or
9-
* (at your option) any later version.
6+
* This program is free software: you can redistribute it and/or
7+
* modify it under the terms of the GNU General Public License as
8+
* published by the Free Software Foundation, either version 3 of the
9+
* License, or (at your option) any later version.
1010
*
11-
* This program is distributed in the hope that it will be useful,
12-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
* GNU General Public License for more details.
11+
* This program is distributed in the hope that it will be useful, but
12+
* WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14+
* General Public License for more details.
1515
*/
1616

1717
#include <iostream>
@@ -25,7 +25,7 @@ using std::cout;
2525
using std::endl;
2626

2727
#define PROGRAM_NAME "dnmtools"
28-
#define PROGRAM_VERSION " 1.1.0"
28+
#define PROGRAM_VERSION " 1.2.0"
2929

3030
int abismal(int argc, const char **argv);
3131
int abismalidx(int argc, const char **argv);

0 commit comments

Comments
 (0)