diff --git a/DESCRIPTION b/DESCRIPTION index 4cf5769..faa2ddb 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: seededlda Type: Package Title: Seeded Sequential LDA for Topic Modeling -Version: 1.1.0 +Version: 1.2.0 Authors@R: c(person("Kohei", "Watanabe", email = "watanabe.kohei@gmail.com", role = c("aut", "cre", "cph")), person("Phan", "Xuan-Hieu", email = "pxhieu@gmail.com", role = c("aut", "cph"), comment = "GibbsLDA++")) Description: Seeded Sequential LDA can classify sentences of texts into pre-define topics with a small number of seed words (Watanabe & Baturo, 2023) . @@ -20,6 +20,8 @@ Depends: Imports: Matrix LinkingTo: Rcpp, RcppArmadillo (>= 0.7.600.1.0), quanteda, testthat +SystemRequirements: Intel TBB: tbb-devel (Fedora, CentOS, RHEL), libtbb-dev (Debian, Ubuntu, etc) or tbb (Mac). +NeedsCompilation: yes Suggests: testthat, topicmodels, diff --git a/NEWS.md b/NEWS.md index 93a8947..6f23b09 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +## Changes in v1.2.0 + +* Remove RcppParallel from the dependency following changes in **quanteda** v4.0. + ## Changes in v1.1.1 * Allow `alpha` and `beta` to be a vector for asymmetric Dirichlet priors.