Skip to content

Commit 45cd6de

Browse files
committed
release 0.2
1 parent c0e242d commit 45cd6de

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

Gemfile

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
source 'https://rubygems.org'
22

3-
gem 'db_schema-definitions', github: 'db-schema/definitions', branch: 'primary_keys'
4-
53
gemspec

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DbSchema::Reader::Postgres [![Build Status](https://travis-ci.org/db-schema/reader-postgres.svg?branch=master)](https://travis-ci.org/db-schema/reader-postgres)
1+
# DbSchema::Reader::Postgres [![Build Status](https://travis-ci.org/db-schema/reader-postgres.svg?branch=master)](https://travis-ci.org/db-schema/reader-postgres) [![Gem Version](https://badge.fury.io/rb/db_schema-reader-postgres.svg)](https://badge.fury.io/rb/db_schema-reader-postgres)
22

33
DbSchema::Reader::Postgres is a library for reading the database
44
structure from PostgreSQL.

db_schema-reader-postgres.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
99
spec.email = ['[email protected]']
1010

1111
spec.summary = 'Database schema reader for PostgreSQL'
12-
spec.description = 'A database structure reader for PostgreSQL with support for tables, fields, indexes, foreign keys, check constraints, enum types and extensions.'
12+
spec.description = 'A database structure reader for PostgreSQL with support for tables, fields, primary keys, indexes, foreign keys, check constraints, enum types and extensions.'
1313
spec.homepage = 'https://github.com/db-schema/reader-postgres'
1414
spec.license = 'MIT'
1515

@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
2020

2121
spec.add_runtime_dependency 'sequel'
2222
spec.add_runtime_dependency 'pg'
23-
spec.add_runtime_dependency 'db_schema-definitions', '= 0.2.rc1'
23+
spec.add_runtime_dependency 'db_schema-definitions', '~> 0.2.0'
2424

2525
spec.add_development_dependency 'bundler', '~> 1.16'
2626
spec.add_development_dependency 'rake', '~> 10.0'
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module DbSchema
22
module Reader
33
class Postgres
4-
VERSION = '0.2.rc2'
4+
VERSION = '0.2'
55
end
66
end
77
end

0 commit comments

Comments
 (0)