From 779106694c737d6d13c9399278d6ae89ea58497f Mon Sep 17 00:00:00 2001 From: Mikhail Kraynov Date: Wed, 21 Dec 2022 16:34:43 +0300 Subject: [PATCH 1/3] Fix repo in go.mod --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index e97aca9..3e415b0 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/AlexZzz/libvirt-exporter +module github.com/Tinkoff/libvirt-exporter go 1.12 From 620fd11e4a1314c217bcb9152ecbdc0b8c3d4856 Mon Sep 17 00:00:00 2001 From: Mikhail Kraynov Date: Thu, 22 Dec 2022 14:06:52 +0300 Subject: [PATCH 2/3] Bump changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dc375d..cb77291 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.3.3] - 2022-12-22 +### Changed +- Change repo from AlexZzz to Tinkoff + ## [2.3.2] - 2022-04-07 ### Added - Add `--version` argument. By [@Ubun1](https://github.com/Ubun1) From 5c408ef1b3b70e7e4bbd614cfd4faabfb6cc984f Mon Sep 17 00:00:00 2001 From: Mikhail Kraynov Date: Thu, 22 Dec 2022 16:06:56 +0300 Subject: [PATCH 3/3] Change repo from AlexZzz to Tinkoff --- libvirt_exporter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt_exporter.go b/libvirt_exporter.go index fb3bd27..50b23b2 100644 --- a/libvirt_exporter.go +++ b/libvirt_exporter.go @@ -25,7 +25,7 @@ import ( "os" "strconv" - "github.com/AlexZzz/libvirt-exporter/libvirtSchema" + "github.com/Tinkoff/libvirt-exporter/libvirtSchema" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp" "gopkg.in/alecthomas/kingpin.v2"