You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2023/02/10 23:48:00 UTC

[airflow-client-go] branch main updated: Add install instructions and update top level dependancies. (#42)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-client-go.git


The following commit(s) were added to refs/heads/main by this push:
     new 8ce0b39  Add install instructions and update top level dependancies. (#42)
8ce0b39 is described below

commit 8ce0b39cfbb2b45d360ffb00e40897319d085d15
Author: Pierre Jeambrun <pi...@gmail.com>
AuthorDate: Sat Feb 11 00:47:54 2023 +0100

    Add install instructions and update top level dependancies. (#42)
---
 README.md | 7 +++++++
 go.mod    | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 9fccf5c..d2297b1 100644
--- a/README.md
+++ b/README.md
@@ -23,6 +23,13 @@ Go Airflow OpenAPI client generated from [openapi
 spec](https://github.com/apache/airflow/blob/master/clients/gen/go.sh).
 
 
+Install
+-------
+
+```
+go get github.com/apache/airflow-client-go/airflow@latest
+```
+
 Usage
 -----
 
diff --git a/go.mod b/go.mod
index 446e855..fa7d57d 100644
--- a/go.mod
+++ b/go.mod
@@ -5,6 +5,6 @@ go 1.13
 replace github.com/apache/airflow-client-go/airflow => ./airflow
 
 require (
-	github.com/apache/airflow-client-go/airflow v0.0.0-20200725194829-781c285536c1
+	github.com/apache/airflow-client-go/airflow v0.0.0-20200725194829-7af9875e7d4c
 	github.com/stretchr/testify v1.6.1
 )