Skip to content

Commit

Permalink
CHANGELOG update
Browse files Browse the repository at this point in the history
  • Loading branch information
NomadCoder committed Mar 5, 2012
1 parent c960266 commit 9d377e1
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
= 0.7.5 - ?
* improvements
* data-related operations in grids and forms are moved to data adapters; implemented (partial) support for DataMapper and Sequel (see updated README)

= 0.7.4 - 2012-03-05
* bug fix
* :enable_pagination is now respected in GridPanel
Expand Down
24 changes: 19 additions & 5 deletions netzke-basepack.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,13 @@ Gem::Specification.new do |s|
]
s.files = [
".autotest",
".travis.yml",
"CHANGELOG.rdoc",
"LICENSE",
"README.md",
"Rakefile",
"TODO.rdoc",
"app/models/netzke_field_list.rb",
"app/models/netzke_model_attr_list.rb",
"app/models/netzke_persistent_array_auto_model.rb",
"config/ci/before-travis.sh",
"init.rb",
"install.rb",
"javascripts/basepack.js",
Expand All @@ -50,6 +49,7 @@ Gem::Specification.new do |s|
"lib/netzke/basepack/data_adapters/abstract_adapter.rb",
"lib/netzke/basepack/data_adapters/active_record_adapter.rb",
"lib/netzke/basepack/data_adapters/data_mapper_adapter.rb",
"lib/netzke/basepack/data_adapters/sequel_adapter.rb",
"lib/netzke/basepack/form_panel.rb",
"lib/netzke/basepack/form_panel/fields.rb",
"lib/netzke/basepack/form_panel/javascripts/comma_list_cbg.js",
Expand Down Expand Up @@ -89,6 +89,14 @@ Gem::Specification.new do |s|
"lib/netzke/basepack/window/javascripts/window.js",
"lib/netzke/basepack/wrap_lazy_loaded.rb",
"lib/netzke/basepack/wrapper.rb",
"lib/netzke/data_mapper.rb",
"lib/netzke/data_mapper/attributes.rb",
"lib/netzke/data_mapper/combobox_options.rb",
"lib/netzke/data_mapper/relation_extensions.rb",
"lib/netzke/sequel.rb",
"lib/netzke/sequel/attributes.rb",
"lib/netzke/sequel/combobox_options.rb",
"lib/netzke/sequel/relation_extensions.rb",
"lib/tasks/netzke_basepack_tasks.rake",
"locales/de.yml",
"locales/en.yml",
Expand All @@ -99,6 +107,7 @@ Gem::Specification.new do |s|
"test/basepack_test_app/.rvmrc",
"test/basepack_test_app/Gemfile",
"test/basepack_test_app/Gemfile.lock",
"test/basepack_test_app/Guardfile",
"test/basepack_test_app/README",
"test/basepack_test_app/Rakefile",
"test/basepack_test_app/app/components/author_form.rb",
Expand Down Expand Up @@ -172,15 +181,18 @@ Gem::Specification.new do |s|
"test/basepack_test_app/config/boot.rb",
"test/basepack_test_app/config/cucumber.yml",
"test/basepack_test_app/config/database.yml.sample",
"test/basepack_test_app/config/database.yml.travis",
"test/basepack_test_app/config/environment.rb",
"test/basepack_test_app/config/environments/development.rb",
"test/basepack_test_app/config/environments/production.rb",
"test/basepack_test_app/config/environments/test.rb",
"test/basepack_test_app/config/initializers/backtrace_silencers.rb",
"test/basepack_test_app/config/initializers/data_mapper_logging.rb",
"test/basepack_test_app/config/initializers/inflections.rb",
"test/basepack_test_app/config/initializers/mime_types.rb",
"test/basepack_test_app/config/initializers/netzke.rb",
"test/basepack_test_app/config/initializers/secret_token.rb",
"test/basepack_test_app/config/initializers/sequel.rb",
"test/basepack_test_app/config/initializers/session_store.rb",
"test/basepack_test_app/config/locales/de.yml",
"test/basepack_test_app/config/locales/es.yml",
Expand Down Expand Up @@ -227,6 +239,7 @@ Gem::Specification.new do |s|
"test/basepack_test_app/features/window.feature",
"test/basepack_test_app/lib/tasks/.gitkeep",
"test/basepack_test_app/lib/tasks/cucumber.rake",
"test/basepack_test_app/lib/tasks/travis.rake",
"test/basepack_test_app/public/404.html",
"test/basepack_test_app/public/422.html",
"test/basepack_test_app/public/500.html",
Expand All @@ -243,10 +256,11 @@ Gem::Specification.new do |s|
"test/basepack_test_app/public/stylesheets/.gitkeep",
"test/basepack_test_app/script/cucumber",
"test/basepack_test_app/script/rails",
"test/basepack_test_app/spec/active_record/attributes_spec.rb",
"test/basepack_test_app/spec/active_record/relation_extensions_spec.rb",
"test/basepack_test_app/spec/components/form_panel_spec.rb",
"test/basepack_test_app/spec/components/grid_panel_spec.rb",
"test/basepack_test_app/spec/data_adapter/adapter_spec.rb",
"test/basepack_test_app/spec/data_adapter/attributes_spec.rb",
"test/basepack_test_app/spec/data_adapter/relation_extensions_spec.rb",
"test/basepack_test_app/spec/factories.rb",
"test/basepack_test_app/spec/spec_helper.rb",
"test/basepack_test_app/test/performance/browsing_test.rb",
Expand Down

0 comments on commit 9d377e1

Please sign in to comment.