From 1093b01e7e19e56429dc5f9e43a67be1869435a8 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Thu, 6 Jan 2022 23:11:53 +0000 Subject: [PATCH 1/3] update simplex.md (#133) * switch to ghc-8.10.7 (lts-18.17 resolver) (#125) * update simplex.md Co-authored-by: Efim Poberezkin <8711996+efim-poberezkin@users.noreply.github.com> --- package.yaml | 2 +- simplex.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.yaml b/package.yaml index afc5d7114..4a37a20c3 100644 --- a/package.yaml +++ b/package.yaml @@ -13,7 +13,7 @@ extra-source-files: dependencies: - aeson == 1.5.* - - ansi-terminal >= 0.10 && < 0.12.0 + - ansi-terminal >= 0.10 && < 0.12 - attoparsec == 0.13.* - base >= 4.7 && < 5 - base64-bytestring >= 1.0 && < 1.3 diff --git a/simplex.md b/simplex.md index b39703e55..6dc22096d 100644 --- a/simplex.md +++ b/simplex.md @@ -4,8 +4,8 @@ Existing chat platforms and protocols have some or all of the following problems: -- Lack of privacy of the conversation, partially caused by [E2EE][1] implementations. -- Lack of privacy of the user profile and connections. +- Lack of privacy of the user profile and connections (meta-data privacy). +- No protection (or only optional protection) of [E2EE][1] implementations from MITM attacks. - Unsolicited messages (spam and abuse). - Lack of data ownership and protection. - Complexity of usage for all non-centralized protocols to non-technical users. From 5e545b639f6ce6b8b30c1bd6a7779d10e6e69bd9 Mon Sep 17 00:00:00 2001 From: Efim Poberezkin <8711996+efim-poberezkin@users.noreply.github.com> Date: Fri, 7 Jan 2022 11:28:39 +0400 Subject: [PATCH 2/3] update simplex-chat.cabal (#178) --- simplex-chat.cabal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simplex-chat.cabal b/simplex-chat.cabal index a1e78a15e..00d7c7b72 100644 --- a/simplex-chat.cabal +++ b/simplex-chat.cabal @@ -40,7 +40,7 @@ library ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns build-depends: aeson ==1.5.* - , ansi-terminal >=0.10 && <0.12.0 + , ansi-terminal >=0.10 && <0.12 , attoparsec ==0.13.* , base >=4.7 && <5 , base64-bytestring >=1.0 && <1.3 @@ -75,7 +75,7 @@ executable simplex-chat ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns -threaded build-depends: aeson ==1.5.* - , ansi-terminal >=0.10 && <0.12.0 + , ansi-terminal >=0.10 && <0.12 , attoparsec ==0.13.* , base >=4.7 && <5 , base64-bytestring >=1.0 && <1.3 @@ -116,7 +116,7 @@ test-suite simplex-chat-test ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns build-depends: aeson ==1.5.* - , ansi-terminal >=0.10 && <0.12.0 + , ansi-terminal >=0.10 && <0.12 , async ==2.2.* , attoparsec ==0.13.* , base >=4.7 && <5 From 7498cd4432de6ff439e410d77f718fa501014b9e Mon Sep 17 00:00:00 2001 From: Efim Poberezkin <8711996+efim-poberezkin@users.noreply.github.com> Date: Fri, 7 Jan 2022 11:32:06 +0400 Subject: [PATCH 3/3] 0.5.5 (#179) --- package.yaml | 2 +- simplex-chat.cabal | 2 +- src/Simplex/Chat/Controller.hs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.yaml b/package.yaml index 4a37a20c3..632fa8d5d 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: simplex-chat -version: 0.5.4 +version: 0.5.5 #synopsis: #description: homepage: https://github.com/simplex-chat/simplex-chat#readme diff --git a/simplex-chat.cabal b/simplex-chat.cabal index 00d7c7b72..4ddf79925 100644 --- a/simplex-chat.cabal +++ b/simplex-chat.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: simplex-chat -version: 0.5.4 +version: 0.5.5 category: Web, System, Services, Cryptography homepage: https://github.com/simplex-chat/simplex-chat#readme author: Evgeny Poberezkin diff --git a/src/Simplex/Chat/Controller.hs b/src/Simplex/Chat/Controller.hs index 7d9b5d093..438ba8fef 100644 --- a/src/Simplex/Chat/Controller.hs +++ b/src/Simplex/Chat/Controller.hs @@ -26,7 +26,7 @@ import System.IO (Handle) import UnliftIO.STM versionNumber :: String -versionNumber = "0.5.4" +versionNumber = "0.5.5" data ChatConfig = ChatConfig { agentConfig :: AgentConfig,