Skip to content

Commit

Permalink
preparing for release
Browse files Browse the repository at this point in the history
  • Loading branch information
iwsfutcmd committed Dec 23, 2021
1 parent 8b4be99 commit 59ac491
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: test
name: Tests
on: [push]
jobs:
build:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 14.0.0-1
- Added Python3.10 and PyPy support
## 14.0.0
- Upgrade to Unicode 14.0.0
## 13.0.0-2
Expand Down
6 changes: 3 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include README
include README.md
include CHANGELOG.md
include LICENSE
include unicodedataplus/*.c
include unicodedataplus/*.h
include unicodedataplus/*/*.c
include unicodedataplus/*/*.h
include tests/*.py
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[![Github CI Status](https://github.com/iwsfutcmd/unicodedataplus/workflows/Tests/badge.svg)](https://github.com/iwsfutcmd/unicodedataplus/actions?query=workflow%3A%22Tests%22)
[![PyPI](https://img.shields.io/pypi/v/unicodedataplus.svg)](https://pypi.org/project/unicodedataplus/)

unicodedataplus
============

Expand Down
16 changes: 0 additions & 16 deletions config.sh

This file was deleted.

9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import sys
from setuptools import setup, Extension

with open("README.md") as f:
long_description = f.read()
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
long_description += "\nChangelog\n=========\n"
with open("CHANGELOG.md", "r", encoding="utf-8") as changelog:
long_description += changelog.read()

module_sources = ["./unicodedataplus/unicodedata.c", "./unicodedataplus/unicodectype.c"]

Expand All @@ -17,7 +20,7 @@

setup(
name="unicodedataplus",
version="14.0.0",
version="14.0.0-1",
description="Unicodedata with extensions for additional properties.",
ext_modules=[main_module],
author="Ben Yang",
Expand Down

0 comments on commit 59ac491

Please sign in to comment.