Skip to content

Commit

Permalink
Release 1.2.0 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjke committed Nov 11, 2022
1 parent 6d96465 commit bc00a44
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.2.0

* [IMPROVE] Fully rewrote gem using rails autoload, modules and Rspec as main test framework ([#38](https://github.com/sjke/pg_ltree/pull/38))

## 1.1.9

* [IMPROVE] Add Rails 7 version support ([#29](https://github.com/sjke/pg_ltree/pull/33) by [@chrisortman](https://github.com/chrisortman))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Gem Version](https://badge.fury.io/rb/pg_ltree.svg)](http://badge.fury.io/rb/pg_ltree)
[![Ruby Style Guide](https://img.shields.io/badge/code_style-rubocop-brightgreen.svg)](https://github.com/rubocop/rubocop)
[![Build Status](https://github.com/sjke/pg_ltree/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/sjke/pg_ltree/actions/workflows/tests.yml?query=branch%3A+master+)
[![Build Status](https://github.com/sjke/pg_ltree/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/sjke/pg_ltree/actions/workflows/tests.yml?query=branch%3Amaster)
[![RubyDoc](http://inch-ci.org/github/sjke/pg_ltree.svg?branch=master)](http://www.rubydoc.info/github/sjke/pg_ltree/)

Adds PostgreSQL's [ltree](http://www.postgresql.org/docs/current/static/ltree.html) support for `ActiveRecord` models
Expand Down
9 changes: 0 additions & 9 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
require "bundler/gem_tasks"
require "standard/rake"
require "rspec/core/rake_task"
require "rdoc/task"
require "appraisal"

RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = "rdoc"
rdoc.title = "PgLtree"
rdoc.options << "--line-numbers"
rdoc.rdoc_files.include("README.rdoc")
rdoc.rdoc_files.include("lib/**/*.rb")
end

RSpec::Core::RakeTask.new(:spec)

task default: :spec
2 changes: 1 addition & 1 deletion lib/pg_ltree/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PgLtree
VERSION = "1.1.9".freeze
VERSION = "1.2.0".freeze
end

0 comments on commit bc00a44

Please sign in to comment.