Skip to content

Commit

Permalink
Bump version to 0.4.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
saforem2 committed Apr 7, 2022
1 parent 276e20d commit 50f60a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## --------------------------------
## USER-DEFINED .gitignore below
## --------------------------------
**.venv**
poetry.lock
src/l2hmc/wandb/**
src/l2hmc/outputs/**
**outputs**
**wandb**
.venv/**
old/**
src/l2hmc/outputs/*
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tool.poetry]
name = "l2hmc"
version = "0.3.0"
version = "0.4.0"
description = "L2HMC algorithm for sampling in Lattice QCD"
authors = ["Sam Foreman <saforem2@gmail.com>"]
packages = [{include = "l2hmc", from = "src"}]
exclude = ["src/l2hmc/outputs/", "src/l2hmc/wandb/", "**/old/**/*", "**/outputs/**/*", "**/__pycache__/**/*", "**/.DS_Store/**/*"]
exclude = ["wandb", "outputs", "old", "src/l2hmc/outputs/", "src/l2hmc/wandb/", "**/old/**/*", "**/wandb/**/*", "**/outputs/**/*", "**/__pycache__/**/*", "**/.DS_Store/**/*"]

[tool.poetry.dependencies]
python = "^3.10,<3.11"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def read(*names, **kwargs):
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/guides/single-sourcing-package-version/
version='0.3.0', # Required
version='0.4.0', # Required

# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
Expand Down

0 comments on commit 50f60a7

Please sign in to comment.