Skip to content

Commit b7df31f

Browse files
committed
Updating version numbers
1 parent 4ce45e5 commit b7df31f

4 files changed

Lines changed: 16 additions & 11 deletions

File tree

NEWS.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,24 @@ stepRNA is available for download at:
44
- PyPI: [https://pypi.org/project/stepRNA/](https://pypi.org/project/stepRNA/)
55
- Github: [https://github.com/bmm514/stepRNA/releases](https://github.com/bmm514/stepRNA/releases)
66

7-
v1.b0 is the first version released to the public, v1.0.2 is the latest version.
7+
v1.b0 is the first version released to the public, v1.0.3 is the latest version.
88

99
stepRNA is licensed under the MIT license. See [LICENSE](https://github.com/bmm514/stepRNA/blob/master/LICENSE) file for details.
1010

1111
## Reporting Issues
1212

1313
Please report any issues to the stepRNA GitHub page or via email:
1414
- https://github.com/bmm514/stepRNA/issues
15-
- benmurcott96@gmail.com (Ben Murcott)
15+
- benmurcott96@gmail.com or bmm41@bath.ac.uk (Ben Murcott)
1616
- v.l.hunt@bath.ac.uk (Vicky Hunt)
1717

1818
## Version Release History
1919

20+
**Version 1.0.3 - 8 Mar, 2021**
21+
22+
- Updating header in passenger_number.csv to siRNA_sequene
23+
- Full manual still to be added
24+
2025
**Version 1.0.2 - 4 Mar, 2021**
2126

2227
- Fixing upload issue from v1.0.1

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ In order for stepRNA to run you must have:
3535
```pip install stepRNA```
3636

3737

38-
**To upgrade to v1.0.2**
38+
**To upgrade to v1.0.3**
3939

4040
```pip install --upgrade stepRNA```
4141

@@ -44,15 +44,15 @@ If this doesn't work due to non-root access issues see **Installing into a Virtu
4444

4545
**To install from source:**
4646

47-
1) Download [stepRNA-1.0.0.tar.gz](https://pypi.org/project/stepRNA/#files)
47+
1) Download [stepRNA-1.0.3.tar.gz](https://pypi.org/project/stepRNA/#files)
4848
2) Unzip it
49-
3) Move into stepRNA-1.0.0 repository
49+
3) Move into stepRNA-1.0.3 repository
5050
4) Run the installation
5151

5252
```
53-
tar -xvzf stepRNA-1.0.0.tar.gz
53+
tar -xvzf stepRNA-1.0.3.tar.gz
5454
55-
cd stepRNA-1.0.0
55+
cd stepRNA-1.0.3
5656
5757
python3 setup.py install
5858
```
@@ -106,9 +106,9 @@ See the [MANUAL](URL_LINK) for more information
106106

107107
Latest release notes:
108108

109-
**Version 1.0.2 - 4 Mar, 2021**
109+
**Version 1.0.3 - 8 Mar, 2021**
110110

111-
- Fixing upload issue from v1.0.1
111+
- Updating header in passenger_number.csv to siRNA_sequene
112112
- Full manual still to be added
113113

114114
See [NEWS](https://github.com/bmm514/stepRNA/blob/master/NEWS.md) for historical updates of release notes

bin/stepRNA

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ optional.add_argument('-d', '--directory', default = os.curdir, help='Directory
5858
optional.add_argument('-m', '--min_score', default=-1, type=int, help='Minimum score to accept. Default is the shortest read length')
5959
flags.add_argument('-e', '--remove_exact', action='store_true', help='Remove exact read matches to the reference sequence')
6060
flags.add_argument('-u', '--make_unique', action='store_true', help='Make FASTA headers unique in reference and reads i.e. >Ref_1 and >Read_1')
61-
flags.add_argument('-V', '--version', action='version', version='stepRNA v1.0.2', help='Print version number then exit.')
61+
flags.add_argument('-V', '--version', action='version', version='stepRNA v1.0.3', help='Print version number then exit.')
6262

6363
args = parser.parse_args()
6464

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
long_description = fh.read()
55

66
setuptools.setup(name='stepRNA',
7-
version='1.0.2',
7+
version='1.0.3',
88
author='Ben Murcott',
99
author_email='bmm41@bath.ac.uk',
1010
description='Align short RNA seqeuncing reads to determine the length of of overhang.',

0 commit comments

Comments
 (0)