Skip to content

Commit 253cce3

Browse files
committed
Update version (1.1)
1 parent 2b30798 commit 253cce3

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.conda/fastaparser/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# conda package recipe
22

33
{% set name = "fastaparser" %}
4-
{% set version = "1.0" %}
4+
{% set version = "1.1" %}
55

66
package:
77
name: "{{ name|lower }}"
@@ -34,7 +34,7 @@ about:
3434
license: "GNU General Public v3 (GPLv3)"
3535
license_family: GPL3
3636
license_file: LICENSE
37-
summary: "A Python FASTA file Parser and Writer"
37+
summary: "A Python FASTA file Parser and Writer."
3838
doc_url: https://fastaparser.readthedocs.io/en/latest/
3939
dev_url: https://github.com/Kronopt/FastaParser
4040

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ assignees: ''
1212
- Python version:
1313
- Python interpreter: [Cpython (default), Jython, PyPy, etc]
1414
- Python packages installed:
15-
- Install method: [pip, conda, other]
15+
- FastaParser install method: [pip, conda, other]
16+
- FastaParser version:
1617

1718
**Describe the bug**
1819
Describe the bug as precisely as possible.

docs/history.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# History
22

3+
### 1.1 (13-02-2020)
4+
* Added property setters for:
5+
* FastaSequence.id
6+
* FastaSequence.description
7+
* Added property deleters for:
8+
* FastaSequence.id
9+
* FastaSequence.description
10+
* FastaSequence.sequence_type
11+
* LetterCode.letter_type
12+
313
### 1.0 (27-01-2020)
414
* First release on PyPI and Anaconda Cloud
515
* Reader, Writer, FastaSequence and LetterCode classes

fastaparser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
__author__ = 'Pedro HC David, https://github.com/Kronopt'
3434
__credits__ = ['Pedro HC David']
35-
__version__ = '1.0'
35+
__version__ = '1.1'
3636
__license__ = 'GPLv3'
3737

3838

0 commit comments

Comments
 (0)