Skip to content

Commit cc78f22

Browse files
chore(git-clone): minor version bump from 1.0.18 to 1.1.0 in README.md
1 parent 3ebd2d2 commit cc78f22

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

registry/coder/modules/git-clone/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This module allows you to automatically clone a repository by URL and skip if it
1515
module "git-clone" {
1616
count = data.coder_workspace.me.start_count
1717
source = "registry.coder.com/coder/git-clone/coder"
18-
version = "1.0.18"
18+
version = "1.1.0"
1919
agent_id = coder_agent.example.id
2020
url = "https://github.com/coder/coder"
2121
}
@@ -29,7 +29,7 @@ module "git-clone" {
2929
module "git-clone" {
3030
count = data.coder_workspace.me.start_count
3131
source = "registry.coder.com/coder/git-clone/coder"
32-
version = "1.0.18"
32+
version = "1.1.0"
3333
agent_id = coder_agent.example.id
3434
url = "https://github.com/coder/coder"
3535
base_dir = "~/projects/coder"
@@ -44,7 +44,7 @@ To use with [Git Authentication](https://coder.com/docs/v2/latest/admin/git-prov
4444
module "git-clone" {
4545
count = data.coder_workspace.me.start_count
4646
source = "registry.coder.com/coder/git-clone/coder"
47-
version = "1.0.18"
47+
version = "1.1.0"
4848
agent_id = coder_agent.example.id
4949
url = "https://github.com/coder/coder"
5050
}
@@ -70,7 +70,7 @@ data "coder_parameter" "git_repo" {
7070
module "git_clone" {
7171
count = data.coder_workspace.me.start_count
7272
source = "registry.coder.com/coder/git-clone/coder"
73-
version = "1.0.18"
73+
version = "1.1.0"
7474
agent_id = coder_agent.example.id
7575
url = data.coder_parameter.git_repo.value
7676
}
@@ -104,7 +104,7 @@ Configuring `git-clone` for a self-hosted GitHub Enterprise Server running at `g
104104
module "git-clone" {
105105
count = data.coder_workspace.me.start_count
106106
source = "registry.coder.com/coder/git-clone/coder"
107-
version = "1.0.18"
107+
version = "1.1.0"
108108
agent_id = coder_agent.example.id
109109
url = "https://github.example.com/coder/coder/tree/feat/example"
110110
git_providers = {
@@ -123,7 +123,7 @@ To GitLab clone with a specific branch like `feat/example`
123123
module "git-clone" {
124124
count = data.coder_workspace.me.start_count
125125
source = "registry.coder.com/coder/git-clone/coder"
126-
version = "1.0.18"
126+
version = "1.1.0"
127127
agent_id = coder_agent.example.id
128128
url = "https://gitlab.com/coder/coder/-/tree/feat/example"
129129
}
@@ -135,7 +135,7 @@ Configuring `git-clone` for a self-hosted GitLab running at `gitlab.example.com`
135135
module "git-clone" {
136136
count = data.coder_workspace.me.start_count
137137
source = "registry.coder.com/coder/git-clone/coder"
138-
version = "1.0.18"
138+
version = "1.1.0"
139139
agent_id = coder_agent.example.id
140140
url = "https://gitlab.example.com/coder/coder/-/tree/feat/example"
141141
git_providers = {
@@ -156,7 +156,7 @@ For example, to clone the `feat/example` branch:
156156
module "git-clone" {
157157
count = data.coder_workspace.me.start_count
158158
source = "registry.coder.com/coder/git-clone/coder"
159-
version = "1.0.18"
159+
version = "1.1.0"
160160
agent_id = coder_agent.example.id
161161
url = "https://github.com/coder/coder"
162162
branch_name = "feat/example"
@@ -174,7 +174,7 @@ For example, this will clone into the `~/projects/coder/coder-dev` folder:
174174
module "git-clone" {
175175
count = data.coder_workspace.me.start_count
176176
source = "registry.coder.com/coder/git-clone/coder"
177-
version = "1.0.18"
177+
version = "1.1.0"
178178
agent_id = coder_agent.example.id
179179
url = "https://github.com/coder/coder"
180180
folder_name = "coder-dev"
@@ -193,7 +193,7 @@ If not defined, the default, `0`, performs a full clone.
193193
module "git-clone" {
194194
count = data.coder_workspace.me.start_count
195195
source = "registry.coder.com/modules/git-clone/coder"
196-
version = "1.0.18"
196+
version = "1.1.0"
197197
agent_id = coder_agent.example.id
198198
url = "https://github.com/coder/coder"
199199
depth = 1

0 commit comments

Comments
 (0)