Skip to content

Commit

Permalink
Merge pull request #12 from chrovis/chore/prepare-0.5.1-snapshot
Browse files Browse the repository at this point in the history
Prepare 0.5.1-SNAPSHOT
  • Loading branch information
nokara26 authored Oct 16, 2024
2 parents 657eab6 + f998371 commit 5bded36
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.5.0] - TBD
## [0.5.0] - 2024-10-16

### BREAKING

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![build](https://github.com/chrovis/clj-hgvs/actions/workflows/build.yml/badge.svg)](https://github.com/chrovis/clj-hgvs/actions/workflows/build.yml)
[![codecov](https://codecov.io/gh/chrovis/clj-hgvs/branch/master/graph/badge.svg)](https://codecov.io/gh/chrovis/clj-hgvs)

Clojure(Script) library for handling [HGVS](http://varnomen.hgvs.org/).
Clojure(Script) library for handling [HGVS](https://hgvs-nomenclature.org/).

## Features

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject clj-hgvs "0.5.0"
(defproject clj-hgvs "0.5.1-SNAPSHOT"
:description "Clojure(Script) library for handling HGVS"
:url "https://github.com/chrovis/clj-hgvs"
:license {:name "Apache License, Version 2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/clj_hgvs/core.cljc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(ns clj-hgvs.core
"Main functions for handling HGVS. See http://varnomen.hgvs.org/ for the
"Main functions for handling HGVS. See https://hgvs-nomenclature.org/ for the
detail HGVS nomenclature."
(:refer-clojure :exclude [== #?(:clj format)])
(:require #?(:clj [clojure.pprint :as pp])
Expand Down
4 changes: 2 additions & 2 deletions src/clj_hgvs/mutation.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@

;;; DNA mutations

;; See http://varnomen.hgvs.org/bg-material/standards#dna
;; See https://hgvs-nomenclature.org/stable/background/standards/#dna
(s/def ::dna-bases
(s/and string? #(re-matches #"[ACGTBDHKMNRSVWY]+" %)))

Expand Down Expand Up @@ -879,7 +879,7 @@

;;; RNA mutations

;; See http://varnomen.hgvs.org/bg-material/standards#rna
;; See https://hgvs-nomenclature.org/stable/background/standards/#rna
(s/def ::rna-bases
(s/and string? #(re-matches #"[acgubdhkmnrsvwy]+" %)))

Expand Down

0 comments on commit 5bded36

Please sign in to comment.