Skip to content

Commit

Permalink
build(release): bump version to v1.0.1-20220102
Browse files Browse the repository at this point in the history
  • Loading branch information
danilogco committed Jan 2, 2022
1 parent da988cd commit 1f5ae38
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v1.0.1-20220102 - Danilo Carolino (@danilogco)

Fixes

* Remove additional quotes from records from location bases.

## v1.0.0-20220102 - Danilo Carolino (@danilogco)

* Initial release
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
geo-regions (1.0.0)
geo-regions (1.0.1)
ruby-enum (~> 0.9)
rubyzip (~> 2.3)
zip (~> 2.0)
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# geo-regions Ruby Gem

[![License: CC BY-SA 4.0](https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg)](LICENSE.md)
[![Gem License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE.md)
[![Build](https://github.com/dcotecnologia/geo-regions-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/dcotecnologia/geo-regions-ruby/actions/workflows/build.yml)
[![CodeQL](https://github.com/dcotecnologia/geo-regions/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/dcotecnologia/geo-regions/actions/workflows/codeql-analysis.yml)
[![Gem Version](https://badge.fury.io/rb/geo-regions.svg)](https://badge.fury.io/rb/geo-regions)
Expand Down Expand Up @@ -112,9 +112,17 @@ isolate to its own commit so I can cherry-pick around it.

Please see [LICENSE](LICENSE.md) for licensing details.

## MaxMind databases

[![Database License: CC BY-SA 4.0](https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg)](LICENSE-CC-BY-4.0.md)

This product includes GeoLite2 data created by MaxMind, available from
[https://www.maxmind.com](https://www.maxmind.com). You can find the License of the databases [here](LICENSE-CC-BY-4.0.md).

## Security Policy

Take a look at our [security policy](SECURITY.md) to learn more about versions supported with security updates and how to report bugs and vulnerabilities.

## Creators and maintainers

* Danilo Carolino, [@danilogco](https://github.com/danilogco) / [@DCO Tecnologia](https://github.com/dcotecnologia)
Expand Down
15 changes: 15 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Security Policy

## Supported Versions

The versions below are currently being supported by members of the organization with security updates:

| Version | Supported |
| ------- | ------------------ |
| 1.0.x | :white_check_mark: |
| < 1.0.x | :x: |

## Reporting a Vulnerability

You can report bugs and vulnerabilities found in this project through the [Issue section on GitHub itself](https://github.com/dcotecnologia/geo-regions/issues).
and we will respond as soon as possible. If you want to contribute pushing a code, we suggest that you take a look first to the [CONTRIBUTING.md](CONTRIBUTING.md) file.
2 changes: 1 addition & 1 deletion geo-regions.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
spec.description = "Useful to make forms and validations. It uses MaxMind database."
spec.homepage = "https://github.com/dcotecnologia/geo-regions"
spec.license = "MIT"
spec.files = Dir["{lib}/**/*"] + ["LICENSE.txt", "Rakefile", "README.md", "CHANGELOG.md"]
spec.files = Dir["{lib}/**/*"] + ["LICENSE.md", "Rakefile", "README.md", "CHANGELOG.md"]
spec.required_ruby_version = ">= 2.5"
spec.test_files = Dir["spec/**/*"]

Expand Down
2 changes: 1 addition & 1 deletion lib/geo-regions/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module GR
VERSION = "1.0.0"
VERSION = "1.0.1"
end

0 comments on commit 1f5ae38

Please sign in to comment.