Skip to content

Commit

Permalink
Merge pull request #170 from stone-payments/release/v1.4.0
Browse files Browse the repository at this point in the history
release/v1.4.0
  • Loading branch information
jonathanlazaro1 committed Nov 27, 2023
2 parents cde327f + 95350a7 commit c21c9bc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @ALTbruno @andremacdowell @brennogb @glauberatanaka @guih50 @henrique1996n1 @jonathanlazaro1 @leoferlopes @mauriciokb @Miltonrdj @Wuerike
* @andremacdowell @leoferlopes @stone-payments/payments-core-api-gtw
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.4.0](https://github.com/stone-payments/kong-plugin-template-transformer/compare/v1.3.0...v1.4.0) (2023-11-27)


### Features

* Adds Makefile entry to generate rockspec file ([9595a5a](https://github.com/stone-payments/kong-plugin-template-transformer/commit/9595a5a7e9540fa52749a6b488095fd7875ddf67))

## [1.3.0](https://github.com/stone-payments/kong-plugin-template-transformer/compare/v1.2.0...v1.3.0) (2022-12-27)


Expand Down
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
DEV_ROCKS = "lua-cjson 2.1.0.10-1" "kong 3.0.2" "luacov 0.12.0" "busted 2.0.0-1" "luacov-cobertura 0.2-1" "luacheck 0.20.0" "lua-resty-template 1.9-1"
PROJECT_FOLDER = template-transformer
LUA_PROJECT = kong-plugin-template-transformer
VERSION = 1.3.0-0
VERSION = 1.4.0-0

setup:
rockspec:
cp rockspec.template kong-plugin-template-transformer-$(VERSION).rockspec

setup: rockspec
@for rock in $(DEV_ROCKS) ; do \
if luarocks list --porcelain $$rock | grep -q "installed" ; then \
echo $$rock already installed, skipping ; \
Expand Down
4 changes: 2 additions & 2 deletions rockspec.template
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong-plugin-template-transformer"
version = "1.3.0-0"
version = "1.4.0-0"
source = {
url = "git://github.com/stone-payments/kong-plugin-template-transformer",
branch = "master",
tag = "v1.3.0",
tag = "v1.4.0",
}
description = {
summary = "A Kong plugin that enables template transforming",
Expand Down
2 changes: 1 addition & 1 deletion template-transformer/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ local gsub = string.gsub
local gmatch = string.gmatch
local TemplateTransformerHandler = {
PRIORITY = 801,
VERSION = "1.3.0"
VERSION = "1.4.0"
}

local template_transformer = require 'kong.plugins.kong-plugin-template-transformer.template_transformer'
Expand Down

0 comments on commit c21c9bc

Please sign in to comment.