Skip to content

Commit

Permalink
Bump to v0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mcelicalderon committed Aug 2, 2020
1 parent ef8b2a4 commit 547675a
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@
*.lock
*.gem

README.md.*

# rspec failure tracking
.rspec_status
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v0.4.3](https://github.com/mcelicalderon/uuid_associations-active_record/tree/v0.4.3) (2020-08-02)

[Full Changelog](https://github.com/mcelicalderon/uuid_associations-active_record/compare/v0.4.2...v0.4.3)

**Implemented enhancements:**

- Add frozen string literal to ruby files [\#6](https://github.com/mcelicalderon/uuid_associations-active_record/pull/6) ([mcelicalderon](https://github.com/mcelicalderon))

## [v0.4.2](https://github.com/mcelicalderon/uuid_associations-active_record/tree/v0.4.2) (2019-04-30)

[Full Changelog](https://github.com/mcelicalderon/uuid_associations-active_record/compare/v0.4.1...v0.4.2)
Expand All @@ -20,6 +28,10 @@

[Full Changelog](https://github.com/mcelicalderon/uuid_associations-active_record/compare/v0.3.2...v0.3.3)

**Fixed bugs:**

- Try to establish DB connection to check for UUID column [\#3](https://github.com/mcelicalderon/uuid_associations-active_record/pull/3) ([mcelicalderon](https://github.com/mcelicalderon))

## [v0.3.2](https://github.com/mcelicalderon/uuid_associations-active_record/tree/v0.3.2) (2018-10-29)

[Full Changelog](https://github.com/mcelicalderon/uuid_associations-active_record/compare/v0.3.1...v0.3.2)
Expand All @@ -36,6 +48,10 @@

[Full Changelog](https://github.com/mcelicalderon/uuid_associations-active_record/compare/v0.1.0...v0.2.0)

**Implemented enhancements:**

- Allow nested attributes to update records using UUID [\#1](https://github.com/mcelicalderon/uuid_associations-active_record/pull/1) ([mcelicalderon](https://github.com/mcelicalderon))

## [v0.1.0](https://github.com/mcelicalderon/uuid_associations-active_record/tree/v0.1.0) (2018-10-16)

[Full Changelog](https://github.com/mcelicalderon/uuid_associations-active_record/compare/80bc4bb1598bfd913418927c42c781456151ce9e...v0.1.0)
Expand Down
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@
[![Build Status](https://travis-ci.org/mcelicalderon/uuid_associations-active_record.svg?branch=master)](https://travis-ci.org/mcelicalderon/uuid_associations-active_record)
[![Gem Version](https://badge.fury.io/rb/uuid_associations-active_record.svg)](https://badge.fury.io/rb/uuid_associations-active_record)

## Table of Contents

<!--ts-->
* [UUID Associations ActiveRecord](#uuid-associations-activerecord)
* [Table of Contents](#table-of-contents)
* [Installation](#installation)
* [Rationale](#rationale)
* [Usage](#usage)
* [Association Methods](#association-methods)
* [Generated Methods](#generated-methods)
* [Nested Attributes](#nested-attributes)
* [Future Work](#future-work)
* [Development](#development)
* [Contributing](#contributing)
* [License](#license)

<!-- Added by: mcelicalderon, at: Sun Aug 2 12:17:14 -05 2020 -->

<!--te-->

## Installation

Add this line to your application's Gemfile:
Expand Down
2 changes: 1 addition & 1 deletion lib/uuid_associations/active_record/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module UuidAssociations
module ActiveRecord
VERSION = '0.4.2'.freeze
VERSION = '0.4.3'
end
end

0 comments on commit 547675a

Please sign in to comment.