Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
chore: Add task to update changelog file
Browse files Browse the repository at this point in the history
  • Loading branch information
clburlison committed Feb 26, 2018
1 parent ff3fd82 commit d0207b7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ tmp/
*.pkg
*.dmg
examples/pinpoint-script/pkgroot/*
config.mk
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ PB_EXTRA_ARGS+= --sign "Developer ID Installer: Clayton Burlison"

#################################################

-include config.mk

##Help - Show this help menu
help:
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
Expand All @@ -32,3 +34,12 @@ dmg: pkg
cp -R ./${PKGTITLE}-${PKGVERSION}.pkg /tmp/${PROJECT}-build
hdiutil create -srcfolder /tmp/${PROJECT}-build -volname "${PROJECT}" -format UDZO -o ${PROJECT}-${PKGVERSION}.dmg
rm -rf /tmp/${PROJECT}-build

## changelog - Update the changelog file (repo maintainer task)
changelog:
docker run -it --rm -v "$(shell pwd)":/usr/local/src/your-app \
clburlison/github-changelog-generator \
-u clburlison -p pinpoint \
-t ${CHANGELOG_GITHUB_TOKEN}
git add "CHANGELOG.md"
git commit -m "chore: Update changelog"
2 changes: 1 addition & 1 deletion pkgroot/Library/Application Support/pinpoint/bin/pinpoint
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ from Foundation import (CFPreferencesAppSynchronize, CFPreferencesCopyAppValue,
kCFPreferencesAnyUser, kCFPreferencesCurrentHost)

__author__ = 'Clayton Burlison (https://clburlison.com)'
__version__ = '2.0.1.91'
__version__ = '2.0.1.92'

# Our preferences "bundle_id"
BUNDLE_ID = 'com.clburlison.pinpoint'
Expand Down

0 comments on commit d0207b7

Please sign in to comment.