Skip to content

Commit 34d3253

Browse files
committed
Merge pull request #148 from TheTribe/release/3.11
Release/3.11
2 parents b64d680 + bf8ae3c commit 34d3253

File tree

5 files changed

+21
-11
lines changed

5 files changed

+21
-11
lines changed

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
Welcome to code-patterns
1+
code-patterns
22
=============
33

4-
## A general-purpose set of libraries designed to make life easier for .NET developers ##
4+
#### Libraries that make life easier for .NET developers
55

66
Here are the highlights:
77

8-
* This is the official codebase used for [NuGet distributions of Patterns](https://nuget.org/packages?q=id%3A+Patterns%3B+author%3A+%22John+Batte%22 "'Patterns' packages with 'John Batte' listed as the author").
9-
* Check the [official code patterns site](http://TheTribe.github.io/code-patterns/ "featuring code samples and Doxygen-generated html") for API documentation and additional information.
10-
* Head over to [the wiki](https://github.com/TheTribe/code-patterns/wiki) for user-contributed content.
11-
* You can also check out [the license file](https://github.com/TheTribe/code-patterns/blob/master/license.txt "FreeBSD (2-Clause)") if you're wondering about that.
8+
* This is the official codebase used for [NuGet distributions of Patterns][nuget]. Releases to NuGet are considered **stable**.
9+
* Waiting for a bugfix that hasn't made it all the way upstream yet? Those of you that don't mind having a **pre-release** dependency can pick up [CI builds at MyGet][myget].
10+
* Check the [official code-patterns site][site] for API documentation, unit test reports, code samples, the developers' blog, and more.
11+
* Head over to [the wiki][wiki] for user-contributed content.
12+
* You can also check out [the license file][license] if you're wondering about that.
1213

13-
Hopefully you'll find these libraries as useful as I do. Cheers!
14+
Hopefully you'll find these libraries as useful as I do. Cheers!
15+
16+
[nuget]: https://www.nuget.org/packages?q=id%3A+Patterns%3B+author%3A+%22The+Tribe%22 "'Patterns' packages with 'The Tribe' listed as the author"
17+
[myget]: https://www.myget.org/gallery/code-patterns
18+
[site]: http://tribesoftware.org/code-patterns/ "featuring code samples and Doxygen-generated html"
19+
[wiki]: https://github.com/TheTribe/code-patterns/wiki
20+
[license]: https://github.com/TheTribe/code-patterns/blob/master/license.txt "FreeBSD (2-Clause)"

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The following log details the outward-facing changes made to code-patterns since its first migration to GitHub.
44

5+
## 3.11 ##
6+
7+
- Updated resources to reflect new versioning/deployment plans (stable-only on NuGet/CI builds on MyGet)
8+
59
## 3.11-beta.1 ##
610

711
- Bumped Autofac dependencies to version 3.3.0 ([issue 143](https://github.com/TheTribe/code-patterns/issues/143))

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = code-patterns
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 3.11-beta.1
35+
PROJECT_NUMBER = 3.11
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer

src/Patterns/SolutionAssemblyInfo.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@
3636
[assembly: ComVisible(false)]
3737
[assembly: NeutralResourcesLanguage("en-US")]
3838
[assembly: AssemblyVersion("3.11.0")]
39-
[assembly: AssemblyInformationalVersion("3.11.0-beta1")]

src/Patterns/SolutionAssemblyInfo.settings.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Settings.Initialize(
33
majorNumber: 3,
44
minorNumber: 11,
55
patchNumber: 0,
6-
buildNumber: 1,
7-
buildLevel: BuildLevels.Beta
6+
buildNumber: 0,
7+
buildLevel: BuildLevels.None
88
);
99
#><#+
1010
public enum BuildLevels

0 commit comments

Comments
 (0)