Prepare for v1.3.5

This commit is contained in:
Luca Guidi 2021-01-14 16:08:16 +01:00
parent d8dbbadd7c
commit c7be2030c3
No known key found for this signature in database
GPG Key ID: CD1966BB1CEAC68F
4 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,11 @@
# Hanami::Assets
Assets management for Ruby web applications
## v1.3.5 - 2021-01-14
### Added
- [Luca Guidi] Official support for Ruby: MRI 3.0
- [Luca Guidi] Official support for Ruby: MRI 2.7
## v1.3.4 - 2019-10-11
### Fixed
- [unleashy] Precompile assets using binary mode to ensure compatibility with Windows

View File

@ -5,7 +5,7 @@ Assets management for Ruby web projects
## Status
[![Gem Version](https://badge.fury.io/rb/hanami-assets.svg)](https://badge.fury.io/rb/hanami-assets)
[![CI](https://github.com/hanami/assets/workflows/ci/badge.svg?branch=unstable)](https://github.com/hanami/assets/actions?query=workflow%3Aci+branch%3Aunstable)
[![CI](https://github.com/hanami/assets/workflows/ci/badge.svg?branch=master)](https://github.com/hanami/assets/actions?query=workflow%3Aci+branch%3Amaster)
[![Test Coverage](https://codecov.io/gh/hanami/assets/branch/master/graph/badge.svg)](https://codecov.io/gh/hanami/assets)
[![Depfu](https://badges.depfu.com/badges/4b37347bd74042ff96477495cc16531d/overview.svg)](https://depfu.com/github/hanami/assets?project=Bundler)
[![Inline Docs](http://inch-ci.org/github/hanami/assets.svg)](http://inch-ci.org/github/hanami/assets)

View File

@ -5,6 +5,6 @@ module Hanami
# Defines the version
#
# @since 0.1.0
VERSION = "1.3.4"
VERSION = "1.3.5"
end
end

View File

@ -2,6 +2,6 @@
RSpec.describe "Hanami::Assets::VERSION" do
it "exposes version" do
expect(Hanami::Assets::VERSION).to eq("1.3.4")
expect(Hanami::Assets::VERSION).to eq("1.3.5")
end
end