Skip to content

Commit

Permalink
Merge pull request #39 from openscilab/release
Browse files Browse the repository at this point in the history
Version 0.2
  • Loading branch information
sadrasabouri authored Jan 8, 2025
2 parents 2e85b4f + e129517 commit 64de7fe
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ body:
label: OPR version
description: Which version of OPR are you using?
options:
- OPR 0.2
- OPR 0.1
default: 0
validations:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.2] - 2025-01-09
### Added
- `__eq__` overload
- `__str__` overload
Expand All @@ -31,5 +32,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `complement` method
- `reverse` method

[Unreleased]: https://github.com/openscilab/opr/compare/v0.1...dev
[Unreleased]: https://github.com/openscilab/opr/compare/v0.2...dev
[0.2]: https://github.com/openscilab/opr/compare/v0.1...v0.2
[0.1]: https://github.com/openscilab/opr/compare/0baa8dd...v0.1
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@

### PyPI
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install opr==0.1`
- Run `pip install opr==0.2`
### Source code
- Download [Version 0.1](https://github.com/openscilab/opr/archive/v0.1.zip) or [Latest Source](https://github.com/openscilab/opr/archive/dev.zip)
- Download [Version 0.2](https://github.com/openscilab/opr/archive/v0.2.zip) or [Latest Source](https://github.com/openscilab/opr/archive/dev.zip)
- Run `pip install .`

## Usage
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 0.1 | :white_check_mark: |
| < 0.1 | :x: |
| 0.2 | :white_check_mark: |
| < 0.2 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion opr/params.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""OPR parameters and constants."""
OPR_VERSION = "0.1"
OPR_VERSION = "0.2"
VALID_BASES = set('ATCG')
DNA_COMPLEMENT_MAP = {"A": "T", "C": "G", "G": "C", "T": "A"}

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "opr" %}
{% set version = "0.1" %}
{% set version = "0.2" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
OPR_VERSION = "0.1"
OPR_VERSION = "0.2"


SETUP_ITEMS = [
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ def read_description():
name='opr',
packages=[
'opr', ],
version='0.1',
version='0.2',
description='OPR: Optimized Primer',
long_description=read_description(),
long_description_content_type='text/markdown',
author='OPR Development Team',
author_email='[email protected]',
url='https://github.com/openscilab/opr',
download_url='https://github.com/openscilab/opr/tarball/v0.1',
download_url='https://github.com/openscilab/opr/tarball/v0.2',
keywords="primer biology bioinformatics genome dna pcr",
project_urls={
'Source': 'https://github.com/openscilab/opr',
Expand Down

0 comments on commit 64de7fe

Please sign in to comment.