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

Commit

Permalink
Merge pull request #23 from TelegramBots/develop
Browse files Browse the repository at this point in the history
Make JetBrains.Annotations private
  • Loading branch information
tuscen authored Dec 26, 2021
2 parents dfaef7f + a0a49d2 commit 5e3141c
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
USE_CI_FEED: false
VERSION: 1.0.1
VERSION: 1.0.2
IS_PRERELEASE: false
PROJECT_PATH: src/Telegram.Bot.Extensions.Polling/Telegram.Bot.Extensions.Polling.csproj
CONFIGURATION: Release
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

### Changed
- Dependency on package `JetBrains.Annotations` is made private

## [1.0.1] - 2021-12-19

### Fixed

- Fixed timeout for throwing out pending updates on start
Expand Down
14 changes: 14 additions & 0 deletions Telegram.Bot.Extensions.Polling.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,24 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.gitignore = .gitignore
LICENSE = LICENSE
README.md = README.md
CHANGELOG.md = CHANGELOG.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{D9549736-D112-4D83-A116-0AEF455A82F8}"
EndProject
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}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{055FB192-3BB9-4FB9-B5C3-1ED8370CEFE9}"
ProjectSection(SolutionItems) = preProject
.github\nuget.config = .github\nuget.config
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{AA1E8187-E2AB-4D11-8517-95B3D67821F1}"
ProjectSection(SolutionItems) = preProject
.github\workflows\ci.yml = .github\workflows\ci.yml
.github\workflows\release.yml = .github\workflows\release.yml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -39,6 +51,8 @@ Global
GlobalSection(NestedProjects) = preSolution
{437A7244-12E6-45F8-A230-9E1241DFA857} = {338ECE13-AF3D-4C77-A3B9-AF0E7C7298C8}
{16570A8F-7E19-41EA-AEE1-9FD378585169} = {D9549736-D112-4D83-A116-0AEF455A82F8}
{055FB192-3BB9-4FB9-B5C3-1ED8370CEFE9} = {C49D6AD4-FC8B-4F2D-AEF8-A77A09120A01}
{AA1E8187-E2AB-4D11-8517-95B3D67821F1} = {055FB192-3BB9-4FB9-B5C3-1ED8370CEFE9}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {90F2F608-0C73-4233-8D9F-8D375CC014D0}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,15 @@
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
<ItemGroup Label="Dependencies">
<PackageReference Include="System.Threading.Channels" Version="6.0.0" />
<PackageReference Include="Telegram.Bot" Version="17.0.0" />
</ItemGroup>

<ItemGroup Label="DevDependencies">
<PackageReference Include="Microsoft.SourceLink.Github" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Nullable" Version="1.3.0" PrivateAssets="all" />
<PackageReference Include="Nullable" Version="1.3.0" PrivateAssets="All" />
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" PrivateAssets="All" />
</ItemGroup>

</Project>

0 comments on commit 5e3141c

Please sign in to comment.