Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NLP-ENGINE-416 Update version #491

Merged
merged 1 commit into from
Jun 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ jobs:
name: nlpw.exe
path: bin/Release/nlpw.exe

- name: Upload icudt73.dll
- name: Upload icudt74.dll
uses: actions/upload-artifact@v3
with:
name: icudt73.dll
path: bin/Release/icudt73.dll
name: icudt74.dll
path: bin/Release/icudt74.dll

- name: Upload icuuc73.dll
- name: Upload icuuc74.dll
uses: actions/upload-artifact@v3
with:
name: icuuc73.dll
path: bin/Release/icuuc73.dll
name: icuuc74.dll
path: bin/Release/icuuc74.dll

- name: Checkout Analyzers repo
uses: actions/checkout@v3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/move-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
uses: dawidd6/action-download-artifact@v2
with:
workflow: build-windows.yml
name: "icudt73.dll"
name: "icudt74.dll"

- name: Fetch Windows icu2
uses: dawidd6/action-download-artifact@v2
with:
workflow: build-windows.yml
name: "icuuc73.dll"
name: "icuuc74.dll"

- name: Fetch Linux exe
uses: dawidd6/action-download-artifact@v2
Expand Down Expand Up @@ -105,17 +105,17 @@ jobs:
workflow: build-macos.yml
name: "libicuucm.a"

- name: Add icudt73.dll asset
- name: Add icudt74.dll asset
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./icudt73.dll"
asset_path: "./icudt74.dll"

- name: Add icuuc73.dll asset
- name: Add icuuc74.dll asset
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./icuuc73.dll"
asset_path: "./icuuc74.dll"

- name: Add libicutu.a asset
uses: shogo82148/actions-upload-release-asset@v1
Expand Down
2 changes: 1 addition & 1 deletion nlp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ All rights reserved.
#include "lite/nlp_engine.h"
#include "version.h"

#define NLP_ENGINE_VERSION "2.11.0"
#define NLP_ENGINE_VERSION "2.11.4"

bool cmdReadArgs(int,_TCHAR*argv[],_TCHAR*&,_TCHAR*&,_TCHAR*&,_TCHAR*&,bool&,bool&,bool&);
void cmdHelpargs(_TCHAR*);
Expand Down
Loading