Skip to content

Commit

Permalink
bump version and prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
copiousfreetime committed Dec 6, 2015
1 parent 52eee7f commit 23e7499
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Amalgalite Changelog

## Version 1.4.2 - 2015-10-XX
## Version 1.5.0 - 2015-12-06

* Update to SQLite 3.9.0
* Add new ENABLE flags from SQLite 3.9.0
* Update to SQLite 3.9.2
* Enable new SQLite features FTS5, JSON1

## Version 1.4.1 - 2015-09-13

Expand Down
8 changes: 4 additions & 4 deletions amalgalite.gemspec
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# DO NOT EDIT - This file is automatically generated
# Make changes to Manifest.txt and/or Rakefile and regenerate
# -*- encoding: utf-8 -*-
# stub: amalgalite 1.4.1 ruby lib
# stub: amalgalite 1.5.0 ruby lib
# stub: ext/amalgalite/c/extconf.rb

Gem::Specification.new do |s|
s.name = "amalgalite"
s.version = "1.4.1"
s.version = "1.5.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Jeremy Hinegardner"]
s.date = "2015-09-14"
s.date = "2015-12-06"
s.description = "Amalgalite embeds the SQLite database engine in a ruby extension. There is no need to install SQLite separately. Look in the examples/ directory to see * general usage * blob io * schema information * custom functions * custom aggregates * requiring ruby code from a database * full text search Also Scroll through Amalgalite::Database for a quick example, and a general overview of the API. Amalgalite adds in the following additional non-default SQLite extensions: * (http://sqlite.org/rtree.html) * (http://sqlite.org/fts3.html)"
s.email = "jeremy@copiousfreetime.org"
s.executables = ["amalgalite-pack"]
s.extensions = ["ext/amalgalite/c/extconf.rb"]
s.extra_rdoc_files = ["CONTRIBUTING.md", "HISTORY.md", "Manifest.txt", "README.md", "TODO.md", "ext/amalgalite/c/notes.txt", "spec/data/iso-3166-country.txt", "spec/data/iso-3166-subcountry.txt"]
s.files = ["CONTRIBUTING.md", "HISTORY.md", "LICENSE", "Manifest.txt", "README.md", "Rakefile", "TODO.md", "bin/amalgalite-pack", "examples/a.rb", "examples/blob.rb", "examples/bootstrap.rb", "examples/define_aggregate.rb", "examples/define_function.rb", "examples/fts3.rb", "examples/gem-db.rb", "examples/require_me.rb", "examples/requires.rb", "examples/schema-info.rb", "ext/amalgalite/c/amalgalite.c", "ext/amalgalite/c/amalgalite.h", "ext/amalgalite/c/amalgalite_blob.c", "ext/amalgalite/c/amalgalite_constants.c", "ext/amalgalite/c/amalgalite_database.c", "ext/amalgalite/c/amalgalite_requires_bootstrap.c", "ext/amalgalite/c/amalgalite_statement.c", "ext/amalgalite/c/extconf.rb", "ext/amalgalite/c/gen_constants.rb", "ext/amalgalite/c/notes.txt", "ext/amalgalite/c/sqlite3.c", "ext/amalgalite/c/sqlite3.h", "ext/amalgalite/c/sqlite3_options.h", "ext/amalgalite/c/sqlite3ext.h", "lib/amalgalite.rb", "lib/amalgalite/aggregate.rb", "lib/amalgalite/blob.rb", "lib/amalgalite/boolean.rb", "lib/amalgalite/busy_timeout.rb", "lib/amalgalite/column.rb", "lib/amalgalite/core_ext/kernel/require.rb", "lib/amalgalite/csv_table_importer.rb", "lib/amalgalite/database.rb", "lib/amalgalite/function.rb", "lib/amalgalite/index.rb", "lib/amalgalite/memory_database.rb", "lib/amalgalite/packer.rb", "lib/amalgalite/paths.rb", "lib/amalgalite/profile_tap.rb", "lib/amalgalite/progress_handler.rb", "lib/amalgalite/requires.rb", "lib/amalgalite/schema.rb", "lib/amalgalite/sqlite3.rb", "lib/amalgalite/sqlite3/constants.rb", "lib/amalgalite/sqlite3/database/function.rb", "lib/amalgalite/sqlite3/database/status.rb", "lib/amalgalite/sqlite3/status.rb", "lib/amalgalite/sqlite3/version.rb", "lib/amalgalite/statement.rb", "lib/amalgalite/table.rb", "lib/amalgalite/taps.rb", "lib/amalgalite/taps/console.rb", "lib/amalgalite/taps/io.rb", "lib/amalgalite/trace_tap.rb", "lib/amalgalite/type_map.rb", "lib/amalgalite/type_maps/default_map.rb", "lib/amalgalite/type_maps/storage_map.rb", "lib/amalgalite/type_maps/text_map.rb", "lib/amalgalite/version.rb", "lib/amalgalite/view.rb", "spec/aggregate_spec.rb", "spec/amalgalite_spec.rb", "spec/blob_spec.rb", "spec/boolean_spec.rb", "spec/busy_handler.rb", "spec/data/iso-3166-country.txt", "spec/data/iso-3166-schema.sql", "spec/data/iso-3166-subcountry.txt", "spec/data/make-iso-db.sh", "spec/database_spec.rb", "spec/default_map_spec.rb", "spec/function_spec.rb", "spec/integeration_spec.rb", "spec/iso_3166_database.rb", "spec/packer_spec.rb", "spec/paths_spec.rb", "spec/progress_handler_spec.rb", "spec/requires_spec.rb", "spec/rtree_spec.rb", "spec/schema_spec.rb", "spec/spec_helper.rb", "spec/sqlite3/constants_spec.rb", "spec/sqlite3/database_status_spec.rb", "spec/sqlite3/status_spec.rb", "spec/sqlite3/version_spec.rb", "spec/sqlite3_spec.rb", "spec/statement_spec.rb", "spec/storage_map_spec.rb", "spec/tap_spec.rb", "spec/text_map_spec.rb", "spec/type_map_spec.rb", "spec/version_spec.rb", "tasks/custom.rake", "tasks/default.rake", "tasks/extension.rake", "tasks/this.rb"]
s.files = ["CONTRIBUTING.md", "HISTORY.md", "LICENSE", "Manifest.txt", "README.md", "Rakefile", "TODO.md", "bin/amalgalite-pack", "examples/a.rb", "examples/blob.rb", "examples/bootstrap.rb", "examples/define_aggregate.rb", "examples/define_function.rb", "examples/fts5.rb", "examples/gem-db.rb", "examples/require_me.rb", "examples/requires.rb", "examples/schema-info.rb", "ext/amalgalite/c/amalgalite.c", "ext/amalgalite/c/amalgalite.h", "ext/amalgalite/c/amalgalite_blob.c", "ext/amalgalite/c/amalgalite_constants.c", "ext/amalgalite/c/amalgalite_database.c", "ext/amalgalite/c/amalgalite_requires_bootstrap.c", "ext/amalgalite/c/amalgalite_statement.c", "ext/amalgalite/c/extconf.rb", "ext/amalgalite/c/gen_constants.rb", "ext/amalgalite/c/notes.txt", "ext/amalgalite/c/sqlite3.c", "ext/amalgalite/c/sqlite3.h", "ext/amalgalite/c/sqlite3_options.h", "ext/amalgalite/c/sqlite3ext.h", "lib/amalgalite.rb", "lib/amalgalite/aggregate.rb", "lib/amalgalite/blob.rb", "lib/amalgalite/boolean.rb", "lib/amalgalite/busy_timeout.rb", "lib/amalgalite/column.rb", "lib/amalgalite/core_ext/kernel/require.rb", "lib/amalgalite/csv_table_importer.rb", "lib/amalgalite/database.rb", "lib/amalgalite/function.rb", "lib/amalgalite/index.rb", "lib/amalgalite/memory_database.rb", "lib/amalgalite/packer.rb", "lib/amalgalite/paths.rb", "lib/amalgalite/profile_tap.rb", "lib/amalgalite/progress_handler.rb", "lib/amalgalite/requires.rb", "lib/amalgalite/schema.rb", "lib/amalgalite/sqlite3.rb", "lib/amalgalite/sqlite3/constants.rb", "lib/amalgalite/sqlite3/database/function.rb", "lib/amalgalite/sqlite3/database/status.rb", "lib/amalgalite/sqlite3/status.rb", "lib/amalgalite/sqlite3/version.rb", "lib/amalgalite/statement.rb", "lib/amalgalite/table.rb", "lib/amalgalite/taps.rb", "lib/amalgalite/taps/console.rb", "lib/amalgalite/taps/io.rb", "lib/amalgalite/trace_tap.rb", "lib/amalgalite/type_map.rb", "lib/amalgalite/type_maps/default_map.rb", "lib/amalgalite/type_maps/storage_map.rb", "lib/amalgalite/type_maps/text_map.rb", "lib/amalgalite/version.rb", "lib/amalgalite/view.rb", "spec/aggregate_spec.rb", "spec/amalgalite_spec.rb", "spec/blob_spec.rb", "spec/boolean_spec.rb", "spec/busy_handler.rb", "spec/data/iso-3166-country.txt", "spec/data/iso-3166-schema.sql", "spec/data/iso-3166-subcountry.txt", "spec/data/make-iso-db.sh", "spec/database_spec.rb", "spec/default_map_spec.rb", "spec/function_spec.rb", "spec/integeration_spec.rb", "spec/iso_3166_database.rb", "spec/packer_spec.rb", "spec/paths_spec.rb", "spec/progress_handler_spec.rb", "spec/requires_spec.rb", "spec/rtree_spec.rb", "spec/schema_spec.rb", "spec/spec_helper.rb", "spec/sqlite3/constants_spec.rb", "spec/sqlite3/database_status_spec.rb", "spec/sqlite3/status_spec.rb", "spec/sqlite3/version_spec.rb", "spec/sqlite3_spec.rb", "spec/statement_spec.rb", "spec/storage_map_spec.rb", "spec/tap_spec.rb", "spec/text_map_spec.rb", "spec/type_map_spec.rb", "spec/version_spec.rb", "tasks/custom.rake", "tasks/default.rake", "tasks/extension.rake", "tasks/this.rb"]
s.homepage = "http://github.com/copiousfreetime/amalgalite"
s.licenses = ["BSD"]
s.rdoc_options = ["--main", "README.md", "--markup", "tomdoc"]
Expand Down
2 changes: 1 addition & 1 deletion lib/amalgalite/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
#++

module Amalgalite
VERSION = "1.4.2"
VERSION = "1.5.0"
end

0 comments on commit 23e7499

Please sign in to comment.