Skip to content
This repository has been archived by the owner on Nov 12, 2022. It is now read-only.

Commit

Permalink
Version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaerlocher authored Aug 12, 2019
2 parents c8c7a03 + be56bce commit 40cf54e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
and [human-readable changelog](https://keepachangelog.com/en/1.0.0/).

## 0.1.1

### Added

- change notification icon url

### Fixed

- if the version number contains a hyphen, it is replaced by a dot-

## 0.1.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion deploy/chocolatey.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
volumes:
- '{{ pwd }}:{{ pwd }}'
vars:
nupkg: '{{ path_package }}/{{ package_id }}.{{ version }}.nupkg'
nupkg: '{{ path_package }}/{{ package_id }}.{{ available_version }}.nupkg'
repository: '{{ loop_deploy.repository }}'
key: '{{ loop_deploy.key }}'
tags:
Expand Down
2 changes: 1 addition & 1 deletion deploy/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
- deployment

- name: '{{ package_id }} : git commit'
shell: "git --git-dir={{ path_package }}/.git/ --work-tree={{ path_package }}/ commit -m 'chocomilk: Update to {{ version }}'"
shell: "git --git-dir={{ path_package }}/.git/ --work-tree={{ path_package }}/ commit -m 'chocomilk: Update to {{ available_version }}'"
tags:
- deployment

Expand Down
Empty file added docs/.nojekyll
Empty file.
2 changes: 1 addition & 1 deletion notifications/mattermost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
text: '{{ package_id }} has been updated to version {{ version }}'
channel: '{{ loop_notifications.channel }}'
username: 'chocomilk'
icon_url: 'https://rawcdn.githack.com/itigoag/chocomilk/3ee96aed4195f465e2927bab9e96ce0fb1364cb5/docs/_images/chocomilk.jpg'
icon_url: 'https://cdn.jsdelivr.net/gh/itigoag/chocomilk@master/docs/_images/chocomilk.jpg'
delegate_to: localhost
tags:
- notifications
2 changes: 1 addition & 1 deletion package/nuspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespaces:
ns: 'http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd'
xpath: /ns:package/ns:metadata/ns:version
value: '{{ version }}'
value: '{{ available_version }}'

- name: '{{ package_id }} : read README'
set_fact:
Expand Down
2 changes: 1 addition & 1 deletion package/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

- name: '{{ package_id }} : search version'
set_fact:
available_version: '{{ version }}'
available_version: "{{ version | regex_replace('-', '.') }}"
current_version: '{{ register_nuspec.matches[0]["{http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd}version"] }}'

- block:
Expand Down

0 comments on commit 40cf54e

Please sign in to comment.