simple_form 4.0.0 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of simple_form might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bdc43deadddaaf9bc4b3872855d677c5e560066d
4
- data.tar.gz: 1a58416a2a4977e825f25c345ba41abec78c85a9
3
+ metadata.gz: 36ca6e532e2f506a2946b385aa3137f28d1fb6bb
4
+ data.tar.gz: b24a8f5bd77dcab385219132ccb6216376299ba2
5
5
  SHA512:
6
- metadata.gz: 9812df086c46e0abe897274ac1260cac8dccb7d906da88f75182efc741a4802931f0c5c8b556dfa1ab0793cf93fe9cd68909d69948cee1f43f26b7a807e3ae29
7
- data.tar.gz: dca2a8eaf706656f77f5294a18068521aa83a9ab2fbd1e269009e68751e9ea2d2811127d5daa017d137c5c9ec5c74b62bbfaaa3fb002211f6778d09cb19a066c
6
+ metadata.gz: fe6cabc6ab3f055f83bcd6ab214f5cc8f9593aa0b1231fdf87deb8ffc612c3b6fab1d76d493a2cd9e9c1fad28b1d259a350160aaf0b1b58e712bb49f60b67646
7
+ data.tar.gz: '008c90e740e05c719fdd4dfe1357c4ec6036c356f3746f813993696c8d849ef8f0122bfdbaa153cc93a12d9de9496efe32be7e72073d614969634448f139b30d'
@@ -1,5 +1,11 @@
1
1
  ## Unreleased
2
2
 
3
+ ## 4.0.1
4
+
5
+ ### Bug fix
6
+ * Do not support Rails 4 anymore. [@rafaelfranca](https://github.com/rafaelfranca)
7
+ * Add missing comma. [@vill](https://github.com/vill)
8
+
3
9
  ## 4.0.0
4
10
 
5
11
  ### Enhancements
@@ -133,7 +133,7 @@ SimpleForm.setup do |config|
133
133
  config.browser_validations = false
134
134
 
135
135
  # Collection of methods to detect if a file type was given.
136
- # config.file_methods = [ :mounted_as, :file?, :public_filename :attached? ]
136
+ # config.file_methods = [ :mounted_as, :file?, :public_filename, :attached? ]
137
137
 
138
138
  # Custom mappings for input types. This should be a hash containing a regexp
139
139
  # to match as key, and the input type that will be used when the field name
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module SimpleForm
3
- VERSION = "4.0.0".freeze
3
+ VERSION = "4.0.1".freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - José Valim
@@ -10,36 +10,36 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2018-04-11 00:00:00.000000000 Z
13
+ date: 2018-05-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activemodel
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - ">"
19
+ - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: '4'
21
+ version: '5.0'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
- - - ">"
26
+ - - ">="
27
27
  - !ruby/object:Gem::Version
28
- version: '4'
28
+ version: '5.0'
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: actionpack
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - ">"
33
+ - - ">="
34
34
  - !ruby/object:Gem::Version
35
- version: '4'
35
+ version: '5.0'
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - ">"
40
+ - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: '4'
42
+ version: '5.0'
43
43
  description: Forms made easy!
44
44
  email: opensource@plataformatec.com.br
45
45
  executables: []