Skip to content

Releases: The-Standard-Organization/ADotNet

Release - v3.0.4

06 Sep 19:04
1e24f7b
Compare
Choose a tag to compare

Release - v3.0.4

Release Notes

		This release has a minor fix for the label job component. The label job component now only applies to pull requests.

Release - v3.0.3

21 May 22:16
a9178b5
Compare
Choose a tag to compare

Release - v3.0.3

Release Notes

		This release has a new label job component that can be used to automatically label pull requests based on the pull request title.

Release - v3.0.2

28 Jun 20:48
3ab9e6e
Compare
Choose a tag to compare

Release - v3.0.2

Release Notes

		BREAKING CHANGE: Adding Support For Generic Job Definitions

		We are excited to announce a significant update to how we define jobs for GitHub Actions using ADotNet!
		Starting from this release, we have introduced a breaking change that allows the usage of generic job
		definitions, replacing the previous job names specifically used for build, tagging, and release.
		This change requires a small code modification in how you define jobs. You will now have the
		flexibility to define jobs based on your specific needs, enhancing customization and providing
		a more streamlined workflow.  Please refer to the updated documentation for guidance on adapting 
		your code to accommodate this change.

Release - v3.0.1

09 Jun 19:30
2460e22
Compare
Choose a tag to compare

Release - v3.0.1

BREAKING CHANGE: Adding Support For Generic Job Definitions

We are excited to announce a significant update to how we define jobs for GitHub Actions using ADotNet!
Starting from this release, we have introduced a breaking change that allows the usage of generic job
definitions, replacing the previous job names specifically used for build, tagging, and release.
This change requires a small code modification in how you define jobs. You will now have the
flexibility to define jobs based on your specific needs, enhancing customization and providing
a more streamlined workflow. Please refer to the updated documentation for guidance on adapting
your code to accommodate this change.

Release - v3.0.0.0

06 Jun 16:56
e31acab
Compare
Choose a tag to compare

Release - v3.0.0.0

Release Notes - Adding Support For Generic Job Definitions

BREAKING CHANGE

We are excited to announce a significant update to how we define jobs for GitHub Actions using ADotNet!
Starting from this release, we have introduced a breaking change that allows the usage of generic job
definitions, replacing the previous job names specifically used for build, tagging, and release.
This change requires a small code modification in how you define jobs. You will now have the
flexibility to define jobs based on your specific needs, enhancing customization and providing
a more streamlined workflow.

Before

	Jobs = new Jobs
	{
		Build = new BuildJob
		{
			. . .
		},
		AddTag = new TagJob
		{
			. . .
		},
		Publish = new PublishJob
		{
			. . .
		},
	}

Now

	Jobs = new Jobs
	{
		{
			"build",
			new Job
			{
				. . .
			}
		},
		{
			"add_tag",
			new Job
			{
				. . .
			}
		},
		{
			"publish",
			new Job
			{
				. . .
			}
		},
	}

Release - v2.2.0.2

28 May 23:43
39efa82
Compare
Choose a tag to compare

Release - v2.2.0.2

Release Notes

Release - v2.2.0.1

28 May 23:35
3fe9a9e
Compare
Choose a tag to compare

Release - v2.2.0.1

Release Notes

Release - v2.2.0.0

28 May 13:37
83bab85
Compare
Choose a tag to compare

Release - v2.2.0.0

Release Notes - Adding Release Tag, GitHub Release, and NuGet Package Push Support

We are excited to announce the addition of new functionality to our software,
enabling developers to enhance their release management process.
With this update, you can now easily add release tags, create GitHub releases,
and push packages to NuGet for release builds.

Upgrade today to leverage these powerful features and improve your development workflow.