README.md in polyfill-0.10.0 vs README.md in polyfill-1.0.0
- old
+ new
@@ -1,42 +1,33 @@
# Polyfill
+[![Version](https://badge.fury.io/rb/polyfill.svg)](https://rubygems.org/gems/polyfill)
[![Build](https://travis-ci.org/AaronLasseigne/polyfill.svg?branch=master)](https://travis-ci.org/AaronLasseigne/polyfill)
Polyfill implements newer Ruby features into older versions. If the Ruby
version already supports the polyfill then calling it does nothing. This is
designed to allow gem maintainers to use newer methods and gain their
advantages while retaining backwards compatibility. It can also be used for
code that would like newer features but is not completely ready to upgrade
Ruby versions. The polyfills are built using refinements so there is **no
monkey patching** that may cause issues outside of your use.
-- [Caveat Emptor](#caveat-emptor)
- [Installation](#installation)
- [Goals](#goals)
- [Usage](#usage)
- [Polyfill](#polyfill-1)
- [Polyfill.get](#polyfillget)
- [Implementation Table](#implementation-table)
- [2.4](#24)
- [2.3](#23)
- [2.2](#22)
-## Caveat Emptor
-
-Not all features can be perfectly implemented. This is a best effort
-implementation but it's best to always test thoroughly across versions.
-This project is also currently pre-1.0. Breaking changes may occur on
-any release. Once a stable API is built it will be moved to 1.0.0.
-
-See the [implementation table](#implementation-table) for specifics about what has been implemented.
-
## Installation
Add it to your Gemfile:
```ruby
-gem 'polyfill', '0.10.0'
+gem 'polyfill', '~> 1.0'
```
Or install it manually:
```sh