Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tsutsu3 committed Oct 31, 2020
1 parent 933964f commit 41e37d8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [main]
tags:
- "v*"
pull_request:
pull_request:

jobs:
test:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Change Log

## v0.1.0 (2020-11-01)

- First release
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# uc.micro-py

<!-- [![Build Status](https://img.shields.io/travis/markdown-it/uc.micro/master.svg?style=flat)](https://travis-ci.org/markdown-it/uc.micro)
[![NPM version](https://img.shields.io/npm/v/uc.micro.svg?style=flat)](https://www.npmjs.org/package/uc.micro) -->
![CI](https://github.com/tsutsu3/uc.micro-py/workflows/CI/badge.svg?branch=main)
[![codecov](https://codecov.io/gh/tsutsu3/uc.micro-py/branch/main/graph/badge.svg?token=5Y7559D69U)](undefined)

This is a Python port of [uc.micro](https://github.com/markdown-it/uc.micro).

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
long_description = fh.read()

with open(path.join(path.dirname(__file__), "uc_micro", "__init__.py")) as f:
match = re.search(r"__version__\s+=\s+(.*)", f.read())
match = re.search(r"__version__\s*=\s*[\'\"](.+?)[\'\"]", f.read())
version = match.group(1)


Expand All @@ -16,7 +16,6 @@
version=version,
license="MIT",
author="tsutsu3",
author_email="tsutsu3prog@gmail.com",
description="Micro subset of unicode data files for linkify-it-py projects.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion uc_micro/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .categories import Cc, Cf, P, Z
from .properties import Any

__version__ = "0.0.1"
__version__ = "0.1.0"

0 comments on commit 41e37d8

Please sign in to comment.