Skip to content

Commit

Permalink
Merge 0c2b5fc into 85406c1
Browse files Browse the repository at this point in the history
  • Loading branch information
metavida committed Apr 3, 2020
2 parents 85406c1 + 0c2b5fc commit 4405a1c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 9 deletions.
14 changes: 10 additions & 4 deletions .gitignore
@@ -1,13 +1,19 @@
# Build and local dev artifacts
/pkg
/.bundle
/rails_oembed
/doc
Gemfile.lock
/doc
.yardoc
coverage
.rspec-status

# MacOS Things
.DS_Store

# Version management files
# (We want each developer to be able to use the version of their choosing)
/.rvm
/.tool-versions
/.ruby-version
/.ruby-gemset
coverage
.rspec-status
coverage
1 change: 0 additions & 1 deletion .tool-versions

This file was deleted.

9 changes: 8 additions & 1 deletion CHANGELOG.rdoc
@@ -1,7 +1,14 @@
= CHANGELOG

== Unreleased (0.12.1)
== Unreleased (0.13.1)

== 0.13.0 - 3 April 2020

* *BREAKING* Remove support for very old versions of Rubygems (older than 1.2.0 which was released in 2008)
* *DEPRECATION* Remove CI testing for EOLed Ruby versions; now only testing on Ruby 2.4.1 and newer
* Updated the list of {Embedly}[https://embed.ly/] and {Noembed}[https://noembed.com/] URL schemes.

A *huge* thank you to {Ian Ker-Seymer}[https://github.com/ianks] for his recent PR that implemented _all_ of the above improvements!

== 0.12.0 - 26 March 2017

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -2,9 +2,9 @@

[![Gem](https://img.shields.io/gem/v/ruby-oembed.svg)](https://rubygems.org/gems/ruby-oembed)
[![Travis branch](https://img.shields.io/travis/ruby-oembed/ruby-oembed/master.svg)](https://travis-ci.org/ruby-oembed/ruby-oembed/branches)
[![Code Climate](https://img.shields.io/codeclimate/github/ruby-oembed/ruby-oembed.svg)](https://codeclimate.com/github/ruby-oembed/ruby-oembed)
[![Code Climate](https://img.shields.io/codeclimate/maintainability/ruby-oembed/ruby-oembed.svg)](https://codeclimate.com/github/ruby-oembed/ruby-oembed)
[![Coveralls](https://coveralls.io/repos/github/ruby-oembed/ruby-oembed/badge.svg?branch=coveralls)](https://coveralls.io/github/ruby-oembed/ruby-oembed?branch=coveralls)
![Maintenance](https://img.shields.io/maintenance/yes/2017.svg)
![Maintenance](https://img.shields.io/maintenance/yes/2020.svg)


An oEmbed consumer library written in Ruby, letting you easily get embeddable HTML representations of supported web pages, based on their URLs. See [oembed.com](http://oembed.com) for more about the protocol.
Expand Down
2 changes: 1 addition & 1 deletion lib/oembed/version.rb
@@ -1,7 +1,7 @@
module OEmbed
class Version
MAJOR = 0
MINOR = 12
MINOR = 13
PATCH = 0
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"

Expand Down

0 comments on commit 4405a1c

Please sign in to comment.