Skip to content

Commit

Permalink
Bumping version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nithinphilips committed Dec 12, 2014
1 parent b069bba commit 010475f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion odel/odel.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""odel.odel: provides entry point main()."""


__version__ = "0.2.0"
__version__ = "0.3.0"


import argparse
Expand Down
9 changes: 7 additions & 2 deletions windows/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ PROGRAM=Odel

CANDLE=candle
LIGHT=light
VERSION=0.2.0
VERSION=0.3.0

MSI_NAME="$(PROGRAM)-$(VERSION)"

%.wixobj: %.wxs
# Convert to Tab delimited file
Expand All @@ -17,7 +19,10 @@ VERSION=0.2.0

$(PROGRAM).msi: $(PROGRAM).wixobj

all: $(PROGRAM).msi
all: $(MSI_NAME).msi

$(MSI_NAME).msi: $(PROGRAM).msi
mv $< $@

debug: $(PROGRAM).msi
msiexec /i $(PROGRAM).msi /L*v $(PROGRAM)_debug.log
Expand Down

0 comments on commit 010475f

Please sign in to comment.