pms-infrastructure 0.0.5.0 → 0.0.6.0
raw patch · 4 files changed
+6/−8 lines, 4 files
Files
- CHANGELOG.md +4/−0
- pms-infrastructure.cabal +1/−1
- src/PMS/Infrastructure/DM/Constant.hs +0/−5
- src/PMS/Infrastructure/DS/Core.hs +1/−2
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for pms-infrastructure +## 0.0.6.0 -- 2025-07-27++* Fixed resources templates.+ ## 0.0.5.0 -- 2025-07-13 * Added serial tool.
pms-infrastructure.cabal view
@@ -20,7 +20,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.0.5.0+version: 0.0.6.0 -- A short (one-line) description of the package. synopsis: pms-infrastructure
src/PMS/Infrastructure/DM/Constant.hs view
@@ -6,8 +6,3 @@ _LOG_FILE_NAME :: String _LOG_FILE_NAME = "pms-infrastructure.log" --- |----_LF :: String-_LF = "\n"-
src/PMS/Infrastructure/DS/Core.hs view
@@ -35,7 +35,6 @@ import qualified PMS.Domain.Model.DM.Type as DM import qualified PMS.Domain.Model.DM.Constant as DM -import PMS.Infrastructure.DM.Constant import PMS.Infrastructure.DM.Type import PMS.Infrastructure.DS.Utility @@ -349,7 +348,7 @@ go :: Pty -> IO () go pty = do msg <- DM.validateMessage args- let cmd = TE.encodeUtf8 $ T.pack $ msg ++ _LF+ let cmd = TE.encodeUtf8 $ T.pack $ msg ++ DM._LF hPutStrLn stderr $ "[INFO] PMS.Infrastructure.DS.Core.work.ptyMessageTask writePty : " ++ BS.unpack cmd writePty pty cmd