Skip to content

Commit

Permalink
Releasing Zena 1.0.0 ("Amen Break" release) !
Browse files Browse the repository at this point in the history
  • Loading branch information
gaspard committed Jun 15, 2011
1 parent bdb1440 commit 83a03af
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion History.txt
@@ -1,4 +1,4 @@
== 1.0.0
== 1.0.0 2011-06-15

* Major changes
* [link] and other url related zafu tags ([form]) *do not typecast to String* by default:
Expand All @@ -21,6 +21,7 @@
* Fixed ajax bugs for edge cases ([add] + [drop], etc).
* Fixed security in ACL when using t_url Ajax.
* Fixed role importation with prop_eval (validation).
* Fixed safe_method caching bug on site bootstrapping.

== 1.0.0.rc3 2011-05-26

Expand Down
2 changes: 1 addition & 1 deletion app/models/node.rb
Expand Up @@ -621,7 +621,7 @@ def create_nodes_from_folder(opts)
return res
end

entries = Dir.entries(folder).reject { |f| f =~ /^[\.~]/ }.map do |filename|
entries = Dir.entries(folder).reject { |f| f =~ /^[\.~]|^__/ }.map do |filename|
String.from_filename(filename)
end.sort

Expand Down
2 changes: 1 addition & 1 deletion lib/zena.rb
Expand Up @@ -220,7 +220,7 @@ def use(*args)
def init
config = Rails.configuration
enable_tools
puts "** zena #{Zena::VERSION} #{tools_enabled == [] ? '' : '('+tools_enabled.join(', ')+') '}starting"
puts "** zena #{Zena::VERSION} starting (c) Gaspard Bucher 2011"
puts "** Bricks: #{Bricks::CONFIG.map{|k,v| k}.sort.join(', ')}"

add_load_paths(config)
Expand Down
2 changes: 1 addition & 1 deletion lib/zena/info.rb
@@ -1,4 +1,4 @@
module Zena
VERSION = '1.0.0.rc4'
VERSION = '1.0.0'
ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
end
2 changes: 1 addition & 1 deletion test/unit/node_test.rb
Expand Up @@ -955,8 +955,8 @@ def test_create_nodes_from_archive

should 'create with correct vclass' do
letter = subject.detect {|n| n.title == 'letter'}
assert_kind_of Note, letter
assert_equal 'Letter', letter.klass
assert_kind_of Note, letter
end
end # with instances of vclass

Expand Down
4 changes: 2 additions & 2 deletions zena.gemspec
Expand Up @@ -5,9 +5,9 @@

Gem::Specification.new do |s|
s.name = %q{zena}
s.version = "1.0.0.rc4"
s.version = "1.0.0"

s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Gaspard Bucher"]
s.date = %q{2011-06-15}
s.default_executable = %q{zena}
Expand Down

0 comments on commit 83a03af

Please sign in to comment.