Skip to content
This repository has been archived by the owner on Dec 21, 2022. It is now read-only.

Commit

Permalink
Release v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Jan 25, 2020
1 parent 13530f3 commit ec1b6e7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .yeyo.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.12.0-dev.11
version: 0.12.0
tag_template: v{{ yeyo_version }}
commit_template: v{{ yeyo_version }}
files:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.12.0 (Unreleased)
## 0.12.0 (2020-01-25)

- Improved the docs to reflect the `SequenceTokenizerSpec` that was added in
0.11.0.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.0-dev.11
0.12.0
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
context: .
args:
PY_VERSION: "${PY_VERSION:-3.6}"
image: docker.io/thauck/gcgc:0.12.0-dev.11
image: docker.io/thauck/gcgc:0.12.0
volumes:
- $PWD/gcgc/data:/data
entrypoint:
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@ GCGC implements two types of tokenizers:

## Documentation Version

The documentation you're reading was build for version: `0.12.0-dev.11`.
The documentation you're reading was build for version: `0.12.0`.
2 changes: 1 addition & 1 deletion gcgc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
from gcgc.tokenizer import SequenceTokenizer
from gcgc.tokenizer import SequenceTokenizerSettings

__version__ = "0.12.0-dev.11"
__version__ = "0.12.0"

_warnings.simplefilter(action="ignore", category=PendingDeprecationWarning)
2 changes: 1 addition & 1 deletion gcgc/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def cli():
@cli.command()
def version():
"""Print the version and exit."""
click.echo("0.12.0-dev.11")
click.echo("0.12.0")


@cli.group("tokenizer")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gcgc"
version = "0.12.0-dev.11"
version = "0.12.0"
description = "GCGC is a preprocessing library for biological sequence model development."
authors = ["Trent Hauck <[email protected]>"]

Expand Down

0 comments on commit ec1b6e7

Please sign in to comment.