flat_file 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2ed36f67ce4b2e4dd652083303c3334c25fb75b38bac58556db7dcc35bae5ce
4
- data.tar.gz: decdc753ea4c124ea579e712ade96264fe5cfe11d4d13d1e1b262bac60d794a1
3
+ metadata.gz: 86ebfb9c9a32b6ffbd25f9c08261f5c5fbc88fb3e88a7fe4cfff5b5ff85cb563
4
+ data.tar.gz: 2d66ef03bf39bb5477a786a8d9d03004a34a81103b2419f2c1e13073f37f0a41
5
5
  SHA512:
6
- metadata.gz: 4d0945ef8d97a589b7b8dbb246f9d5e216f3ae430e9789818f7bcd7dd3e11768b59a43658b208f05adcef7066bcb22613b867bda9b3ee4eb35c7c68bc0804347
7
- data.tar.gz: 3ce275f2214d7395cfe716793be28870a2aa081bc92f6002cc615079e520ddd81e992984a0c3d2fda900835468744572c3d14035d6024202bcfbf7a508bd759a
6
+ metadata.gz: c288abb20aa30c81b4055c041a7c5b0395b53e31005f25708a97fb024d317f40c22c5371dba21a6d0bdb13269775b6352495f83e978bda2d81d4400f8b5f3acb
7
+ data.tar.gz: 282b15592afed0928ebf109bdca61f3833edc7e0059f68a595d48424f8abfc1e1396f3e9fcadbeb1c8ee5b70f850f62d5aa3367bbaa7743c5a5585a334717bd3
@@ -0,0 +1,19 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ <!-- git log $(git describe --tags --abbrev=0)..HEAD --oneline -->
9
+
10
+ ## 0.2.0 (2020-09-09)
11
+
12
+ ### Changed
13
+
14
+ - Update readme
15
+ - Add Changelog
16
+
17
+ ## 0.1.0 (2020-09-09)
18
+
19
+ - Initial release
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- flat_file (0.1.0)
4
+ flat_file (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # FlatFile
2
2
 
3
+ [![Gem](https://img.shields.io/gem/v/flat_file)][rubygems]
4
+ [![Build Status](https://travis-ci.org/tcd/flat_file.svg?branch=master)][travis-ci]
5
+ [![License](https://img.shields.io/github/license/tcd/flat_file)][license]
6
+ [![Documentation](http://img.shields.io/badge/docs-rubydoc.info-blue.svg)][docs]
7
+
8
+ [rubygems]: https://rubygems.org/gems/flat_file
9
+ [travis-ci]: https://travis-ci.org/tcd/flat_file
10
+ [license]: https://github.com/tcd/flat_file/blob/master/LICENSE.txt
11
+ [docs]: https://www.rubydoc.info/gems/flat_file/0.2.0
12
+
3
13
  Convenience methods for reading CSV, TSV, & JSON files.
4
14
 
5
15
  ## Installation
@@ -1,3 +1,3 @@
1
1
  module FlatFile
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0".freeze()
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flat_file
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clay Dunston
@@ -119,6 +119,7 @@ files:
119
119
  - ".gitignore"
120
120
  - ".rubocop.yml"
121
121
  - ".travis.yml"
122
+ - CHANGELOG.md
122
123
  - Gemfile
123
124
  - Gemfile.lock
124
125
  - LICENSE.txt
@@ -140,7 +141,7 @@ metadata:
140
141
  homepage_uri: https://github.com/tcd/flat_file
141
142
  source_code_uri: https://github.com/tcd/flat_file
142
143
  changelog_uri: https://github.com/tcd/flat_file/blob/master/CHANGELOG.md
143
- documentation_uri: https://www.rubydoc.info/gems/flat_file/0.1.0
144
+ documentation_uri: https://www.rubydoc.info/gems/flat_file/0.2.0
144
145
  yard.run: yri
145
146
  post_install_message:
146
147
  rdoc_options: []