Skip to content

Commit 29c08c2

Browse files
authored
Merge pull request #263 from jacebrowning/release/v3.0
Bump version to 3.0
2 parents 72eadbe + 48a53dd commit 29c08c2

File tree

6 files changed

+10
-14
lines changed

6 files changed

+10
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 3.0 (beta)
1+
# 3.0 (2021-06-02)
22

33
- Removed `link` feature in favor of `links`.
44

docs/use-cases/multiple-links.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Using multiple links
1+
# Using Multiple Links
22

33
This feature can be used to create as many symbolic links as you need from one repository.
44

5-
## The syntax
5+
## The Syntax
66

77
Let's say we have a simple project structure:
88

@@ -32,7 +32,7 @@ This will result in the following symbolic links:
3232
- `<root>/vendor/partial_repo` -> `<root>/.gitman/my_dependency/include`
3333
- `<root>/vendor/full_repo` -> `<root>/.gitman/my_dependency`
3434

35-
## Alternative syntax
35+
## Alternative Syntax
3636

3737
```yaml
3838
location: vendor

docs/use-cases/sparse-checkouts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Using sparse checkouts
1+
# Using Sparse Checkouts
22

33
For some use-cases, especially when dealing with monorepos, it can be useful to limit the paths that are checked out
44
from the reference repository. It is important to note, that this influences only the shape of the project local

gitman/tests/files/gdm-custom.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ sources:
44
type: git
55
name: gitman_1
66
rev: fb693447579235391a45ca170959b5583c5042d8
7-
link: src/gitman_a
7+
links:
8+
- target: src/gitman_a
89
- repo: https://github.com/jacebrowning/gitman
910
type: git
1011
name: gitman_2
1112
rev: master
12-
link: src/gitman_b
13+
links:
14+
- target: src/gitman_b

gitman/tests/files/gitman.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,26 @@ location: ../../../tmp
22
sources:
33
- name: gitman_1
44
type: git
5-
link: ''
65
repo: https://github.com/jacebrowning/gitman-demo
76
rev: example-branch
87
- name: gitman_2
98
type: git
10-
link: ''
119
repo: https://github.com/jacebrowning/gitman-demo
1210
rev: example-tag
1311
- name: gitman_3
1412
type: git
15-
link: ''
1613
repo: https://github.com/jacebrowning/gitman-demo
1714
rev: master@{2015-06-18 11:11:11}
1815
sources_locked:
1916
- name: gitman_1
2017
type: git
21-
link: ''
2218
repo: https://github.com/jacebrowning/gitman-demo
2319
rev: eb37743011a398b208dd9f9ef79a408c0fc10d48
2420
- name: gitman_2
2521
type: git
26-
link: ''
2722
repo: https://github.com/jacebrowning/gitman-demo
2823
rev: 7bd138fe7359561a8c2ff9d195dff238794ccc04
2924
- name: gitman_3
3025
type: git
31-
link: ''
3226
repo: https://github.com/jacebrowning/gitman-demo
3327
rev: 2da24fca34af3748e3cab61db81a2ae8b35aec94

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22

33
name = "gitman"
4-
version = "3.0b1"
4+
version = "3.0"
55
description = "A language-agnostic dependency manager using Git."
66

77
license = "MIT"

0 commit comments

Comments
 (0)