Skip to content

Commit

Permalink
Merge pull request #263 from jacebrowning/release/v3.0
Browse files Browse the repository at this point in the history
Bump version to 3.0
  • Loading branch information
jacebrowning authored Jun 2, 2021
2 parents 72eadbe + 48a53dd commit 29c08c2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 3.0 (beta)
# 3.0 (2021-06-02)

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

Expand Down
6 changes: 3 additions & 3 deletions docs/use-cases/multiple-links.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Using multiple links
# Using Multiple Links

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

## The syntax
## The Syntax

Let's say we have a simple project structure:

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

## Alternative syntax
## Alternative Syntax

```yaml
location: vendor
Expand Down
2 changes: 1 addition & 1 deletion docs/use-cases/sparse-checkouts.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Using sparse checkouts
# Using Sparse Checkouts

For some use-cases, especially when dealing with monorepos, it can be useful to limit the paths that are checked out
from the reference repository. It is important to note, that this influences only the shape of the project local
Expand Down
6 changes: 4 additions & 2 deletions gitman/tests/files/gdm-custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ sources:
type: git
name: gitman_1
rev: fb693447579235391a45ca170959b5583c5042d8
link: src/gitman_a
links:
- target: src/gitman_a
- repo: https://github.com/jacebrowning/gitman
type: git
name: gitman_2
rev: master
link: src/gitman_b
links:
- target: src/gitman_b
6 changes: 0 additions & 6 deletions gitman/tests/files/gitman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,26 @@ location: ../../../tmp
sources:
- name: gitman_1
type: git
link: ''
repo: https://github.com/jacebrowning/gitman-demo
rev: example-branch
- name: gitman_2
type: git
link: ''
repo: https://github.com/jacebrowning/gitman-demo
rev: example-tag
- name: gitman_3
type: git
link: ''
repo: https://github.com/jacebrowning/gitman-demo
rev: master@{2015-06-18 11:11:11}
sources_locked:
- name: gitman_1
type: git
link: ''
repo: https://github.com/jacebrowning/gitman-demo
rev: eb37743011a398b208dd9f9ef79a408c0fc10d48
- name: gitman_2
type: git
link: ''
repo: https://github.com/jacebrowning/gitman-demo
rev: 7bd138fe7359561a8c2ff9d195dff238794ccc04
- name: gitman_3
type: git
link: ''
repo: https://github.com/jacebrowning/gitman-demo
rev: 2da24fca34af3748e3cab61db81a2ae8b35aec94
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]

name = "gitman"
version = "3.0b1"
version = "3.0"
description = "A language-agnostic dependency manager using Git."

license = "MIT"
Expand Down

0 comments on commit 29c08c2

Please sign in to comment.