Skip to content

Commit

Permalink
Merge branch 'hotfix/2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelmathot committed Apr 11, 2022
2 parents 06680ba + 3442a85 commit 6dd2f6e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 170 deletions.
5 changes: 3 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@
"version": "0.2.0",
"configurations": [
{
"name": "Query sentinel2 index",
"name": "Query sentinel1 index",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/Terradue.OpenSearch.Client/bin/Debug/net5.0/OpenSearchClient",
"args": [
"https://catalog.terradue.com/sentinel2/search"
"https://catalog.terradue.com/sentinel1/search",
"enclosure"
],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

## [2.0.0](https://github.com/Terradue/DotNetOpenSearchClient/compare/1.9.9...2.0.0)
## [2.0.1](https://github.com/Terradue/DotNetOpenSearchClient/compare/2.0.0...2.0.1)

### Commits

- fix dll plugin load for self contained package [`6922708`](https://github.com/Terradue/DotNetOpenSearchClient/commit/69227081c290e6fdd70d537d936b9cb8d6119ac3)
- fix release [`1380f94`](https://github.com/Terradue/DotNetOpenSearchClient/commit/1380f9448144278597403bbb18eff1d1ad67ccf7)

## [2.0.0](https://github.com/Terradue/DotNetOpenSearchClient/compare/1.9.9...2.0.0) - 2022-04-11

### Commits

- CHANGELOG [`80d33dc`](https://github.com/Terradue/DotNetOpenSearchClient/commit/80d33dc7d36aa23607ac242e84a37177005056ce)
- new build [`33e03f7`](https://github.com/Terradue/DotNetOpenSearchClient/commit/33e03f7ef62616d289bf7a0200a0590d1a98d2ef)
- move to net5 [`43b4d02`](https://github.com/Terradue/DotNetOpenSearchClient/commit/43b4d02649d2587b19909a11502a2fa873b1fc51)
- removed src [`e35aaf3`](https://github.com/Terradue/DotNetOpenSearchClient/commit/e35aaf34ca728807aa9beced98bd1d67c1116320)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Title>DotNetOpenSearchClient</Title>
<Description>Generic OpenSearch Client</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>2.0.0</Version>
<Version>2.0.1</Version>
<Authors>Emmanuel Mathot</Authors>
<Company>Terradue</Company>
<RepositoryUrl>https://github.com/Terradue/DotNetOpenSearchClient</RepositoryUrl>
Expand Down
165 changes: 0 additions & 165 deletions Terradue.OpenSearch.Client/WalkEachTargetPerProject.targets

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static IOpenSearchClientDataModelExtension FindPluginByName(string name)
string dirpath = Path.GetDirectoryName((new System.Uri(Assembly.GetExecutingAssembly().CodeBase)).AbsolutePath);

log.Debug(string.Format("Scan {0} for OpenSearch Client plugins", dirpath));
foreach (string dll in Directory.GetFiles(dirpath, "*.dll"))
foreach (string dll in Directory.GetFiles(dirpath, "Terradue.*.dll"))
allAssemblies.Add(Assembly.LoadFile(dll));

foreach (var assembly in allAssemblies) {
Expand Down

0 comments on commit 6dd2f6e

Please sign in to comment.