Skip to content

Commit

Permalink
chore: generate static site L01
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Pluskal committed Feb 7, 2024
1 parent 3529ad9 commit 90263ad
Show file tree
Hide file tree
Showing 22 changed files with 1,603 additions and 31 deletions.
41 changes: 40 additions & 1 deletion Lectures/Lecture_01/_site/Lecture.html
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,45 @@

<img src="assets/img/gitflow.png" width="40%">

</script></section><section data-markdown><script type="text/template">

### [Semantic Versioning 2.0.0](https://semver.org)

Given a version number **MAJOR.MINOR.PATC**H, increment the:

1. **MAJOR** version when you make incompatible API changes
2. **MINOR** version when you add functionality in a backward compatible manner
3. **PATCH** version when you make backward compatible bug fixes

Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.

</script></section><section data-markdown><script type="text/template">

### [semantic-release](https://semantic-release.gitbook.io/semantic-release/)

semantic-release automates the whole package release workflow including: determining the next version number, generating the release notes, and publishing the package.

This removes the immediate connection between human emotions and version numbers, strictly following the Semantic Versioning specification and communicating the impact of changes to consumers.

</script></section><section data-markdown><script type="text/template">

### [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)

```
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
```

The commit contains the following structural elements, to communicate intent to the consumers of your library:

1. *fix:* a commit of the type fix patches a bug in your codebase (this correlates with PATCH in Semantic Versioning).
2. *feat:* a commit of the type feat introduces a new feature to the codebase (this correlates with MINOR in Semantic Versioning).
3. *BREAKING CHANGE:* a commit that has a footer *BREAKING CHANGE:*, or appends a *!* after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A *BREAKING CHANGE* can be part of commits of any type.
4. types other than *fix:* and *feat:* are allowed, for example @commitlint/config-conventional (based on the Angular convention) recommends *build:*, *chore:*, *ci:*, *docs:*, *style:*, *refactor:*, *perf:*, *test:*, and others.
5. footers other than *BREAKING CHANGE:* <description> may be provided and follow a convention similar to git trailer format.

</script></section></section><section ><section data-markdown><script type="text/template">
## Why To Choose .NET?
Expand Down Expand Up @@ -1640,7 +1679,7 @@
// options from URL query string
var queryOptions = Reveal().getQueryHash() || {};

var options = extend(defaultOptions, {"controls":true,"controlsTutorial":true,"controlsLayout":"bottom-right","progress":true,"slideNumber":true,"showSlideNumber":"all","keyboard":true,"overview":true,"navigationMode":"linear","fragments":true,"fragmentInURL":false,"help":true,"mouseWheel":false,"transition":"slide","transitionSpeed":"fast"}, queryOptions);
var options = extend(defaultOptions, {"controls":true,"controlsTutorial":true,"controlsLayout":"bottom-right","progress":true,"showSlideNumber":"all","keyboard":true,"overview":true,"navigationMode":"linear","fragments":true,"fragmentInURL":false,"help":true,"mouseWheel":false,"transition":"slide","transitionSpeed":"fast","slideNumber":"c/t","enableMenu":true,"enableChalkboard":true,"enableTitleFooter":true}, queryOptions);
</script>

<script src="./_assets/_reveal-md/plugin/sampler.js"></script>
Expand Down
6 changes: 3 additions & 3 deletions Lectures/Lecture_01/_site/assets/sln/Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
6 changes: 3 additions & 3 deletions Lectures/Lecture_01/_site/dist/reveal.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Lectures/Lecture_01/_site/dist/reveal.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Lectures/Lecture_01/_site/dist/reveal.esm.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Lectures/Lecture_01/_site/dist/reveal.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Lectures/Lecture_01/_site/dist/reveal.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 90263ad

Please sign in to comment.