Skip to content

Commit

Permalink
Changing version numbers ahead of new release
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdavidsmith committed Sep 23, 2022
1 parent 782f991 commit d142e61
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sequencing (RRBS). These tools focus on overcoming the computing
challenges imposed by the scale of genome-wide DNA methylation data,
which is usually the early parts of data analysis.

## Installing release 1.1.0
## Installing release 1.2.0

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

### Configuration

* Download [dnmtools-1.1.0.tar.gz](https://github.com/smithlabcode/dnmtools/releases/download/v1.1.0/dnmtools-1.1.0.tar.gz).
* Download [dnmtools-1.2.0.tar.gz](https://github.com/smithlabcode/dnmtools/releases/download/v1.2.0/dnmtools-1.2.0.tar.gz).
* Unpack the archive:
```console
$ tar -zxvf dnmtools-1.1.0.tar.gz
$ tar -zxvf dnmtools-1.2.0.tar.gz
```
* Move into the dnmtools directory and create a build directory:
```console
$ cd dnmtools-1.1.0
$ cd dnmtools-1.2.0
$ mkdir build && cd build
```
* Run the configuration script:
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
dnl General Public License for more details.

AC_INIT([dnmtools], [1.1.0], [andrewds@usc.edu],
AC_INIT([dnmtools], [1.2.0], [andrewds@usc.edu],
[dnmtools], [https://github.com/smithlabcode/dnmtools])
dnl the config.h is not currently #included in the source, and only
dnl used to keep command lines short.
Expand Down
6 changes: 3 additions & 3 deletions documentation/docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ would need to be activated when you want to use dnmtools.

### Configuration

* Download [dnmtools-1.1.0.tar.gz](https://github.com/smithlabcode/dnmtools/releases/download/v1.1.0/dnmtools-1.1.0.tar.gz).
* Download [dnmtools-1.2.0.tar.gz](https://github.com/smithlabcode/dnmtools/releases/download/v1.2.0/dnmtools-1.2.0.tar.gz).
* Unpack the archive:
```console
$ tar -zxvf dnmtools-1.1.0.tar.gz
$ tar -zxvf dnmtools-1.2.0.tar.gz
```
* Move into the dnmtools directory and create a build directory:
```console
$ cd dnmtools-1.1.0
$ cd dnmtools-1.2.0
$ mkdir build && cd build
```
* Run the configuration script:
Expand Down
24 changes: 12 additions & 12 deletions src/dnmtools.cpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/* Copyright (C) 2022 University of Southern California and
* Andrew D. Smith
/* Copyright (C) 2022 University of Southern California and
* Andrew D. Smith and Guilherme Sena
*
* Authors: Andrew D. Smith and Song Qiang and Guilherme Sena
* Authors: Andrew D. Smith and Song Qiang and Guilherme Sena
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*/

#include <iostream>
Expand All @@ -25,7 +25,7 @@ using std::cout;
using std::endl;

#define PROGRAM_NAME "dnmtools"
#define PROGRAM_VERSION " 1.1.0"
#define PROGRAM_VERSION " 1.2.0"

int abismal(int argc, const char **argv);
int abismalidx(int argc, const char **argv);
Expand Down

0 comments on commit d142e61

Please sign in to comment.