Skip to content

Commit

Permalink
Merge pull request #3 from OliverSherouse/release-0.1.1
Browse files Browse the repository at this point in the history
fix release issues
  • Loading branch information
OliverSherouse authored Mar 27, 2019
2 parents 298edd4 + 26b307d commit 82ec38b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ deploy:
- provider: script
script: poetry publish --build -u $PYPI_USER -p $PYPI_PASSWORD
on:
branch: master
tags: true
- provider: pages
github-token: $GITHUB_TOKEN
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Yo-Runner
# Yo-runner

Yo is a Yaml-based task runner for lazy people. When you're coding, you may
Yo is a Yaml-driven task runner for lazy people. When you're coding, you may
often need to run a long command many times, but you don't want to do all that
typing every time. You don't want to have to remember the options or the flags
every time. You could write a Makefile, but they're annoying. Maybe your
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = "0.1"
# The full version, including alpha/beta/rc tags
release = "0.1.0.dev"
release = "0.1.1"


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -91,7 +91,7 @@
html_theme_options = {
"github_user": "OliverSherouse",
"github_repo": "yo-runner",
"description": "A YAML-based task runner for lazy people",
"description": "A YAML-driven task runner for lazy people",
"github_banner": True,
"show_relbars": True,
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Welcome to yo-runner's documentation\!

Yo is a Yaml-based task runner for lazy people. When you're coding, you may
Yo is a Yaml-driven task runner for lazy people. When you're coding, you may
often need to run a long command many times, but you don't want to do all that
typing every time. You don't want to have to remember the options or the flags
every time. You could write a Makefile, but they're annoying. Maybe your
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "yo-runner"
version = "0.1.0"
version = "0.1.1"
description = "A YAML-driven task runner for lazy people"
authors = ["Oliver Sherouse <oliver@oliversherouse.com>"]
license = "GPL-2.0+"
Expand All @@ -19,8 +19,8 @@ classifiers = [
packages = [{include = "yo.py"}]

[tool.poetry.dependencies]
python = "^3.4"
pyyaml = "^5.1"
python = "^3.7"
pyyaml = ">=3.13"

[tool.poetry.dev-dependencies]
pytest = "^3.0"
Expand Down
2 changes: 1 addition & 1 deletion yo.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from pathlib import Path

log = logging.getLogger(name="yo")
__version__ = "0.1.0"
__version__ = "0.1.1"


def error(message):
Expand Down

0 comments on commit 82ec38b

Please sign in to comment.