From c0a013c7efc9b1f3d3a09e79923d84321bd7c1b1 Mon Sep 17 00:00:00 2001 From: Nick Angelou Date: Thu, 28 Dec 2023 15:52:07 -0600 Subject: [PATCH] update links and publish (#151) * update * update conduct --- CHANGES.md | 6 ++++++ CITATION.cff | 2 +- CODE_OF_CONDUCT.md | 10 +++++----- README.md | 6 +++--- USAGE.md | 2 +- package-lock.json | 4 ++-- package.json | 8 ++++---- 7 files changed, 22 insertions(+), 16 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index fd5dbfa3..16a96fcf 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,12 @@ See [Microsoft's Change log](https://github.com/microsoft/SEAL/blob/master/CHANGES.md) for more details on each SEAL version change. +## Version 5.1.3 + +Chore: + +- Updated new links to Github pages and republish for npm to also have the updated links. No functional changes. + ## Version 5.1.2 Chore: diff --git a/CITATION.cff b/CITATION.cff index b79eee6d..a40088e0 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: "Nick" orcid: "https://orcid.org/0000-0001-7423-158X" title: "node-seal, a Homomorphic Encryption library for TypeScript or JavaScript using Microsoft SEAL" -version: 5.1.2 +version: 5.1.3 doi: 10.5281/zenodo.1234 date-released: 2022-03-19 url: "https://github.com/s0l0ist/node-seal" diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index e7a10b16..e3d7edb2 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -55,11 +55,11 @@ further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at info@morfix.io. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. +reported by contacting the project author. All complaints will be reviewed and +investigated and will result in a response that is deemed necessary and +appropriate to the circumstances. The project team is obligated to maintain +confidentiality with regard to the reporter of an incident. Further details of +specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other diff --git a/README.md b/README.md index 7fb50900..7ab08873 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# [node-seal](https://morfix.io) · [![GitHub license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/s0l0ist/node-seal/blob/main/LICENSE) [![codecov](https://codecov.io/gh/s0l0ist/node-seal/branch/main/graph/badge.svg)](https://codecov.io/gh/s0l0ist/node-seal) [![npm version](https://badge.fury.io/js/node-seal.svg)](https://www.npmjs.com/package/node-seal) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmorfix-io%2Fnode-seal.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fmorfix-io%2Fnode-seal?ref=badge_shield) +# [node-seal](https://github.com/s0l0ist/node-seal) · [![GitHub license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/s0l0ist/node-seal/blob/main/LICENSE) [![codecov](https://codecov.io/gh/s0l0ist/node-seal/branch/main/graph/badge.svg)](https://codecov.io/gh/s0l0ist/node-seal) [![npm version](https://badge.fury.io/js/node-seal.svg)](https://www.npmjs.com/package/node-seal) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmorfix-io%2Fnode-seal.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fmorfix-io%2Fnode-seal?ref=badge_shield) node-seal is a homomorphic encryption library for TypeScript or JavaScript. @@ -66,7 +66,7 @@ WebView. ## Demo -Go to [morfix.io](https://morfix.io) +Go to [morfix.io](https://s0l0ist.github.io/seal-sandbox/) This sandbox was built for users to experiment and learn how to use Microsoft SEAL featuring node-seal. @@ -90,7 +90,7 @@ View the latest docs [here](https://s0l0ist.github.io/node-seal) ## Examples -Check out the [Sandbox](https://morfix.io) to run HE functions and even +Check out the [Sandbox](https://s0l0ist.github.io/seal-sandbox/) to run HE functions and even generate working code! If you'd rather read an example, take a look [here](FULL-EXAMPLE.md). diff --git a/USAGE.md b/USAGE.md index d56d2f35..c711daa5 100644 --- a/USAGE.md +++ b/USAGE.md @@ -256,7 +256,7 @@ const decryptor = seal.Decryptor(context, secretKey) ### Functions We show homomorphic addition, but more functions are available and the code can -be generated from the [demo](https://morfix.io). +be generated from the [demo](https://s0l0ist.github.io/seal-sandbox/). ```javascript //////////////////////// diff --git a/package-lock.json b/package-lock.json index 423315f2..47d523c1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "node-seal", - "version": "5.1.2", + "version": "5.1.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "node-seal", - "version": "5.1.2", + "version": "5.1.3", "license": "MIT", "devDependencies": { "@babel/core": "^7.23.3", diff --git a/package.json b/package.json index 0b562d1a..c02cdfc0 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,16 @@ { "name": "node-seal", - "version": "5.1.2", + "version": "5.1.3", "description": "Homomorphic Encryption for TypeScript or JavaScript using Microsoft SEAL", "repository": { "type": "git", "url": "https://github.com/morfix-io/node-seal" }, - "homepage": "https://morfix.io", + "homepage": "https://s0l0ist.github.io/seal-sandbox/", "author": { "name": "Nick Angelou", - "email": "accounts@morfix.io", - "url": "https://morfix.io" + "email": "angelou.nick@gmail.com", + "url": "https://s0l0ist.github.io/seal-sandbox/" }, "keywords": [ "homomorphic",