Skip to content

Commit feab662

Browse files
committed
Update docs with new version
1 parent f163ad8 commit feab662

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,4 +346,5 @@ ASALocalRun/
346346
healthchecksdb
347347

348348
# Backup folder for Package Reference Convert tool in Visual Studio 2017
349-
MigrationBackup/
349+
MigrationBackup/
350+
.ionide

docs/coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![logo](assets/img/logo.svg ':size=200')
22

3-
# InRuleGitStorage<small>0.3.0</small>
3+
# InRuleGitStorage<small>0.4.0</small>
44

55
>Store and manage your <a href="https://www.inrule.com/" style="text-decoration: underline rgba(51, 51, 51, 0.2);">InRule</a>® business rules in a Git repository.
66

docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ InRuleGitStorage is a NuGet package that can be installed using a package instal
55
## Package Manager
66

77
```powershell
8-
PM> Install-Package Sknet.InRuleGitStorage -Version 0.3.0
8+
PM> Install-Package Sknet.InRuleGitStorage -Version 0.4.0
99
```
1010

1111
## .NET CLI
1212

1313
```batch
14-
dotnet add package Sknet.InRuleGitStorage --version 0.3.0
14+
dotnet add package Sknet.InRuleGitStorage --version 0.4.0
1515
```
1616

1717
## Package Reference
1818

1919
```xml
20-
<PackageReference Include="Sknet.InRuleGitStorage" Version="0.3.0" />
20+
<PackageReference Include="Sknet.InRuleGitStorage" Version="0.4.0" />
2121
```

docs/introduction.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ InRuleGitRepository.Clone(
4646
// Get a new instance of your local InRule Git repository
4747
using (var repo = InRuleGitRepository.Open("/path/to/local/repo"))
4848
{
49-
// Create a local branch that is tracked to the remote "v0.3.0" branch
50-
repo.CreateBranch("v0.3.0", "origin");
49+
// Create a local branch that is tracked to the remote "v0.4.0" branch
50+
repo.CreateBranch("v0.4.0", "origin");
5151

5252
// Switch the current branch to the newly created tracked branch
53-
repo.Checkout("v0.3.0");
53+
repo.Checkout("v0.4.0");
5454

55-
// Create a local branch from the "v0.3.0" branch
55+
// Create a local branch from the "v0.4.0" branch
5656
repo.CreateBranch("invoice-date-field");
5757

5858
// Switch the current branch to the newly created local branch
@@ -65,13 +65,13 @@ using (var repo = InRuleGitRepository.Open("/path/to/local/repo"))
6565
repo.Commit(ruleApp, "Add invoice date field");
6666

6767
// Switch back to the previous branch that does not have the field change
68-
repo.Checkout("v0.3.0");
68+
repo.Checkout("v0.4.0");
6969

7070
// Merge the invoice date field change into the current branch
7171
repo.Merge("invoice-date-field");
7272

7373
// Delete the original branch containing the invoice date field change since the
74-
// change now exists in the "v0.3.0" branch
74+
// change now exists in the "v0.4.0" branch
7575
repo.RemoveBranch("invoice-date-field");
7676

7777
// Push the changes in the current branch to the remote repository (commented out

0 commit comments

Comments
 (0)