Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Suszyński committed Apr 16, 2015
2 parents 4fc3839 + 8ceac53 commit 88b6040
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/puppet-herald/database.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'fileutils'
require 'uri'

# A module for Herald
module PuppetHerald
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet-herald/javascript.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def files
def uglify(mapname)
require 'uglifier'
filenames = files
sources = filenames.collect { |file| File.read("#{@base}/#{file}") }
sources = filenames.collect { |file| File.read(PuppetHerald.relative_dir("#{@base}/#{file}")) }
source = sources.join "\n"
options = {
source_map_url: mapname,
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet-herald/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def self.version_prep(desired)
end

# Version for Herald
VERSION = version_prep '0.8.0'
VERSION = version_prep '0.8.1'
# Lincense for Herald
LICENSE = 'Apache-2.0'
# Project name
Expand Down

0 comments on commit 88b6040

Please sign in to comment.