Skip to content

Commit 2460e22

Browse files
authored
Merge pull request #91 from hassanhabib/users/cjdutoit/releases-v3.0.1
RELEASES: v3.0.1
2 parents e8a1b65 + bc15cac commit 2460e22

File tree

1 file changed

+7
-54
lines changed

1 file changed

+7
-54
lines changed

ADotNet/ADotNet.csproj

+7-54
Original file line numberDiff line numberDiff line change
@@ -14,68 +14,21 @@
1414
<RepositoryType>git</RepositoryType>
1515
<PackageTags>ADO YAML AzureDevOps</PackageTags>
1616
<PackageReleaseNotes>
17-
#Adding Support For Generic Job Definitions
17+
BREAKING CHANGE: Adding Support For Generic Job Definitions
1818

19-
## BREAKING CHANGE
20-
We are excited to announce a significant update to how we define jobs for GitHub Actions using ADotNet!
19+
We are excited to announce a significant update to how we define jobs for GitHub Actions using ADotNet!
2120
Starting from this release, we have introduced a breaking change that allows the usage of generic job
2221
definitions, replacing the previous job names specifically used for build, tagging, and release.
2322
This change requires a small code modification in how you define jobs. You will now have the
2423
flexibility to define jobs based on your specific needs, enhancing customization and providing
25-
a more streamlined workflow.
26-
27-
### Before
28-
```csharp
29-
Jobs = new Jobs
30-
{
31-
Build = new BuildJob
32-
{
33-
. . .
34-
},
35-
AddTag = new TagJob
36-
{
37-
. . .
38-
},
39-
Publish = new PublishJob
40-
{
41-
. . .
42-
},
43-
}
44-
```
45-
46-
### Now
47-
```csharp
48-
Jobs = new Jobs
49-
{
50-
{
51-
"build",
52-
new Job
53-
{
54-
. . .
55-
}
56-
},
57-
{
58-
"add_tag",
59-
new Job
60-
{
61-
. . .
62-
}
63-
},
64-
{
65-
"publish",
66-
new Job
67-
{
68-
. . .
69-
}
70-
},
71-
}
72-
```
24+
a more streamlined workflow. Please refer to the updated documentation for guidance on adapting
25+
your code to accommodate this change.
7326
</PackageReleaseNotes>
7427
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
7528
<PackageReadmeFile>README.md</PackageReadmeFile>
76-
<AssemblyVersion>3.0.0.0</AssemblyVersion>
77-
<FileVersion>3.0.0.0</FileVersion>
78-
<Version>3.0.0.0</Version>
29+
<AssemblyVersion>3.0.1</AssemblyVersion>
30+
<FileVersion>3.0.1</FileVersion>
31+
<Version>3.0.1</Version>
7932
<PackageLicenseFile>License.txt</PackageLicenseFile>
8033
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
8134
<PackageProjectUrl>https://github.com/hassanhabib/ADotNet</PackageProjectUrl>

0 commit comments

Comments
 (0)