Skip to content

Commit

Permalink
Merge branch 'release-1.12.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkress committed Jul 17, 2020
2 parents 340675a + d86596d commit 293ecfe
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 46 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
debian-startscript text eol=lf
systemd-spunkybot.service text eol=lf
debian/* text eol=lf
debian/source/format eol=lf
setup.* text eol=lf
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:

- run: npm install -g markdown-link-check
- run: markdown-link-check ./README.md
- run: markdown-link-check ./CHANGELOG.md
- run: markdown-link-check ./.github/CONTRIBUTING.md
- run: markdown-link-check ./.github/SECURITY.md
- run: markdown-link-check ./.github/CODE_OF_CONDUCT.md
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
release_name: v${{ github.ref }}
body: |
Changes in this Release
- draft status
draft: true
- to be done
draft: false
prerelease: false
37 changes: 0 additions & 37 deletions .github/workflows/npmlint.yml

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:

jobs:
deploy:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

jobs:
stale:
name: Check activity

runs-on: ubuntu-latest

Expand All @@ -17,7 +18,7 @@ jobs:
days-before-stale: 60
days-before-close: 7
stale-issue-label: 'wontfix'
exempt-issue-labels: 'pinned,security,backlog'
exempt-issue-labels: 'backlog,confirmed,enhancement,security'
#stale-pr-message: 'Stale pull request message'
#stale-pr-label: 'no-pr-activity'
#exempt-pr-labels: 'awaiting-approval,work-in-progress'
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/SpunkyBot/spunkybot/compare/1.12.0...develop)
## [Unreleased](https://github.com/SpunkyBot/spunkybot/compare/1.12.1...develop)

## [1.12.1](https://github.com/SpunkyBot/spunkybot/compare/1.11.0...1.12.0) - 2020-07-17

### Fixed

* Fixed #61: Ignore mapcycle.txt file in case of using dynamic mapcycle feature
* Fixed #86: Problem with big and small cycle

## [1.12.0](https://github.com/SpunkyBot/spunkybot/compare/1.11.0...1.12.0) - 2020-07-11

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.0
1.12.1
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
spunkybot (1.12.1-1) unstable; urgency=medium

* New upstream release.
- Full changelog on https://github.com/spunkybot/spunkybot/releases

-- Spunky Bot Release Manager <releases@spunkybot.de> Fri, 17 Jul 2020 18:56:14 +0200

spunkybot (1.12.0-1) unstable; urgency=medium

* New upstream release.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
.. _Urban Terror: http://www.urbanterror.info/
.. _MIT: https://opensource.org/licenses/MIT
.. _Homepage: https://spunkybot.de/
.. _Repository: https://github.com/spunkybot/spunkybot/
.. _Repository: https://github.com/SpunkyBot/spunkybot/
"""

setup(name='spunkybot',
Expand All @@ -71,7 +71,7 @@
author_email='feedback@spunkybot.de',
url='https://spunkybot.de/',
keywords='Urban Terror Game Administration RCON Bot',
download_url='https://github.com/spunkybot/spunkybot/releases/latest',
download_url='https://github.com/SpunkyBot/spunkybot/releases/latest',
license='MIT',
install_requires=['setuptools'],
py_modules=['spunky'],
Expand Down
3 changes: 2 additions & 1 deletion spunky.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
Run the bot: python spunky.py
"""

__version__ = '1.12.0'
__version__ = '1.12.1'


### IMPORTS
Expand Down Expand Up @@ -4077,6 +4077,7 @@ def set_current_map(self):

if self.dynamic_mapcycle:
self.send_rcon('g_nextmap %s' % self.next_mapname)
self.send_rcon('g_nextCycleMap %s' % self.next_mapname)
if self.mapname != self.next_mapname:
self.rcon_say("^7Next Map: ^3%s" % self.next_mapname)

Expand Down

0 comments on commit 293ecfe

Please sign in to comment.