File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 55
66on :
77 push :
8- branches : [ master , develop ]
8+ branches : [ main , develop ]
99 pull_request :
10- branches : [ master , develop ]
10+ branches : [ main , develop ]
1111
1212jobs :
1313 build :
Original file line number Diff line number Diff line change 11![ build] ( https://github.com/PathwayCommons/semantic-search/workflows/build/badge.svg )
2- [ ![ codecov] ( https://codecov.io/gh/PathwayCommons/semantic-search/branch/master /graph/badge.svg?token=K7444IQC9I )] ( https://codecov.io/gh/PathwayCommons/semantic-search )
2+ [ ![ codecov] ( https://codecov.io/gh/PathwayCommons/semantic-search/branch/main /graph/badge.svg?token=K7444IQC9I )] ( https://codecov.io/gh/PathwayCommons/semantic-search )
33[ ![ Checked with mypy] ( http://www.mypy-lang.org/static/mypy_badge.svg )] ( http://mypy-lang.org/ )
44![ GitHub] ( https://img.shields.io/github/license/PathwayCommons/semantic-search?color=blue )
55
Original file line number Diff line number Diff line change 1+ """
2+ Simple check list for releasing
3+
4+ 1. Bump `version` in `setup.py`
5+ 2. Bump the corresponding `version` in `tests/test_semantic_search.py`
6+ 4. Commit these changes with the message: ":bookmark: Release: v<version>"
7+ 5. Add a tag in git to mark the release: "git tag v<version> -m 'Adds tag v<version> for release' "
8+ Push the tag to git: git push --tags origin main
9+ 6. Optionally add some release notes to the tag in GitHub
10+ """
11+
112import setuptools
213
314with open ("README.md" , "r" ) as fh :
You can’t perform that action at this time.
0 commit comments