Skip to content

Commit ecf87b5

Browse files
authored
Fixed py shebang (#42)
1 parent 9d9ef6c commit ecf87b5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

LicensesViewController.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "LicensesViewController"
3-
s.version = "0.10.0"
3+
s.version = "0.11.0"
44
s.summary = "Give credit where credit is due."
55
s.description = <<-DESC
66
Recursively finds all LICENSE.* files in a given directory and generates that can be displayed via Settings.bundle or the provided view controller.

credits.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python3
1+
#!/usr/bin/env python3
22
# coding: utf-8
33

44
"""
@@ -21,7 +21,7 @@
2121
from optparse import Option, OptionValueError
2222
from copy import deepcopy
2323

24-
VERSION = '0.5.0'
24+
VERSION = '0.11.0'
2525
PROG = os.path.basename(os.path.splitext(__file__)[0])
2626
DESCRIPTION = """Generate a `Settings.bundle` friendly plist file from all
2727
'LICENSE.*' files in a given directory. Inspired by JosephH and Sean's

0 commit comments

Comments
 (0)