Skip to content

Commit

Permalink
Publish new release
Browse files Browse the repository at this point in the history
  • Loading branch information
hdadhich01 committed Dec 14, 2023
1 parent 49f7aec commit 5a37a96
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build distribution
run: |
python -m build
- name: Publish distribution
uses: pypa/gh-action-pypi-publish@release/v1
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build distribution
run: |
python -m build
- name: Publish distribution
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "round-nutrition"
version = "1.1.1a3"
version = "1.1.1"
description = "Round nutritional values for federal compliance"
authors = [
{name = "Harsh Dadhich", email = "me@harshdadhich.com"},
Expand Down
2 changes: 1 addition & 1 deletion round_nutrition/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .other import *
from .vitamin import *

__version__ = "1.1.0"
__version__ = "1.1.1"
__doc__ = "Round nutritional values for federal compliance with FDA and NDC guidelines. More information available at https://github.com/hdadhich01/round-nutrition."
__sources__ = [
"https://www.fda.gov/files/food/published/Food-Labeling-Guide-%28PDF%29.pdf#page=129",
Expand Down

0 comments on commit 5a37a96

Please sign in to comment.