From 0fe94d7dc162694f04c9cbd1a2d5094fc208b25d Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Sat, 24 Dec 2022 18:04:10 +0100 Subject: [PATCH] bump version to include updates --- Makefile | 2 +- README.md | 2 +- docs/resources/repository.md | 4 ++-- examples/provider.tf | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index fd641ad..3ed848f 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) GOFMT ?= gofmt -s -VERSION = 0.11.1 +VERSION = 0.11.2 test: fmt-check go test -i $(TEST) || exit 1 diff --git a/README.md b/README.md index 07892f9..458f843 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ terraform { required_providers { gitea = { source = "Lerentis/gitea" - version = "0.11.1" + version = "0.11.2" } } } diff --git a/docs/resources/repository.md b/docs/resources/repository.md index ae63f33..86442d3 100644 --- a/docs/resources/repository.md +++ b/docs/resources/repository.md @@ -92,14 +92,14 @@ Need to exist in the gitea instance ### Read-Only -- `created` (String) - `clone_url` (String) +- `created` (String) - `html_url` (String) - `id` (String) The ID of this resource. -- `ssh_url` (String) - `permission_admin` (Boolean) - `permission_pull` (Boolean) - `permission_push` (Boolean) +- `ssh_url` (String) - `updated` (String) diff --git a/examples/provider.tf b/examples/provider.tf index 9d46388..23098f8 100644 --- a/examples/provider.tf +++ b/examples/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { gitea = { source = "terraform.local/lerentis/gitea" - version = "0.11.1" + version = "0.11.2" } } }