Skip to content
This repository was archived by the owner on Jun 18, 2022. It is now read-only.

Commit 5e3141c

Browse files
authored
Merge pull request #23 from TelegramBots/develop
Make JetBrains.Annotations private
2 parents dfaef7f + a0a49d2 commit 5e3141c

4 files changed

Lines changed: 26 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
env:
88
USE_CI_FEED: false
9-
VERSION: 1.0.1
9+
VERSION: 1.0.2
1010
IS_PRERELEASE: false
1111
PROJECT_PATH: src/Telegram.Bot.Extensions.Polling/Telegram.Bot.Extensions.Polling.csproj
1212
CONFIGURATION: Release

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
2323

2424
## [Unreleased]
2525

26+
### Changed
27+
- Dependency on package `JetBrains.Annotations` is made private
28+
29+
## [1.0.1] - 2021-12-19
30+
2631
### Fixed
2732

2833
- Fixed timeout for throwing out pending updates on start

Telegram.Bot.Extensions.Polling.sln

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,24 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1212
.gitignore = .gitignore
1313
LICENSE = LICENSE
1414
README.md = README.md
15+
CHANGELOG.md = CHANGELOG.md
1516
EndProjectSection
1617
EndProject
1718
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{D9549736-D112-4D83-A116-0AEF455A82F8}"
1819
EndProject
1920
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Telegram.Bot.Extensions.Polling.Tests", "test\Telegram.Bot.Extensions.Polling.Tests\Telegram.Bot.Extensions.Polling.Tests.csproj", "{16570A8F-7E19-41EA-AEE1-9FD378585169}"
2021
EndProject
22+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{055FB192-3BB9-4FB9-B5C3-1ED8370CEFE9}"
23+
ProjectSection(SolutionItems) = preProject
24+
.github\nuget.config = .github\nuget.config
25+
EndProjectSection
26+
EndProject
27+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{AA1E8187-E2AB-4D11-8517-95B3D67821F1}"
28+
ProjectSection(SolutionItems) = preProject
29+
.github\workflows\ci.yml = .github\workflows\ci.yml
30+
.github\workflows\release.yml = .github\workflows\release.yml
31+
EndProjectSection
32+
EndProject
2133
Global
2234
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2335
Debug|Any CPU = Debug|Any CPU
@@ -39,6 +51,8 @@ Global
3951
GlobalSection(NestedProjects) = preSolution
4052
{437A7244-12E6-45F8-A230-9E1241DFA857} = {338ECE13-AF3D-4C77-A3B9-AF0E7C7298C8}
4153
{16570A8F-7E19-41EA-AEE1-9FD378585169} = {D9549736-D112-4D83-A116-0AEF455A82F8}
54+
{055FB192-3BB9-4FB9-B5C3-1ED8370CEFE9} = {C49D6AD4-FC8B-4F2D-AEF8-A77A09120A01}
55+
{AA1E8187-E2AB-4D11-8517-95B3D67821F1} = {055FB192-3BB9-4FB9-B5C3-1ED8370CEFE9}
4256
EndGlobalSection
4357
GlobalSection(ExtensibilityGlobals) = postSolution
4458
SolutionGuid = {90F2F608-0C73-4233-8D9F-8D375CC014D0}

src/Telegram.Bot.Extensions.Polling/Telegram.Bot.Extensions.Polling.csproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,15 @@
4040
</None>
4141
</ItemGroup>
4242

43-
<ItemGroup>
44-
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
43+
<ItemGroup Label="Dependencies">
4544
<PackageReference Include="System.Threading.Channels" Version="6.0.0" />
4645
<PackageReference Include="Telegram.Bot" Version="17.0.0" />
46+
</ItemGroup>
47+
48+
<ItemGroup Label="DevDependencies">
4749
<PackageReference Include="Microsoft.SourceLink.Github" Version="1.1.1" PrivateAssets="All" />
48-
<PackageReference Include="Nullable" Version="1.3.0" PrivateAssets="all" />
50+
<PackageReference Include="Nullable" Version="1.3.0" PrivateAssets="All" />
51+
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" PrivateAssets="All" />
4952
</ItemGroup>
5053

5154
</Project>

0 commit comments

Comments
 (0)